2019-09-03から1日間の記事一覧

競技プログラミング Sum of Three Integers

問題:Sum of Three Integers https://atcoder.jp/contests/abc051/tasks/abc051_b ■2重ループ ----------- import java.util.*; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int k = sc.nextInt(); int s…