結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Mcpu3Mcpu3
提出日時 2018-12-06 16:46:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,942 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 2,365 ms
コンパイル使用メモリ 76,028 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-09-14 02:33:40
合計ジャッジ時間 9,377 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
43,488 KB
testcase_01 AC 411 ms
50,444 KB
testcase_02 AC 374 ms
46,604 KB
testcase_03 AC 527 ms
52,180 KB
testcase_04 AC 163 ms
42,616 KB
testcase_05 AC 168 ms
42,360 KB
testcase_06 AC 167 ms
42,644 KB
testcase_07 AC 165 ms
42,668 KB
testcase_08 AC 234 ms
43,304 KB
testcase_09 AC 454 ms
51,500 KB
testcase_10 AC 1,942 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		sc.close();
		for (int i = 1; i < N - 1; ++i) {
			for (int j = i; j < N - i; ++j) {
				if (i + 2 * j <= N) System.out.println(i + " " + j + " " + (N - i - j));
			}
		}
	}
}
0