結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Mcpu3Mcpu3
提出日時 2018-12-06 16:48:36
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 319 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 59,652 KB
最終ジャッジ日時 2024-09-14 02:33:56
合計ジャッジ時間 12,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
58,180 KB
testcase_01 AC 849 ms
53,628 KB
testcase_02 AC 763 ms
53,436 KB
testcase_03 AC 1,133 ms
53,552 KB
testcase_04 AC 132 ms
41,120 KB
testcase_05 AC 137 ms
41,080 KB
testcase_06 AC 132 ms
41,060 KB
testcase_07 AC 193 ms
41,424 KB
testcase_08 AC 312 ms
50,188 KB
testcase_09 AC 981 ms
53,752 KB
testcase_10 TLE -
権限があれば一括ダウンロードができます

ソースコード

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.printf("%d %d %d\n", i, j, N - i - j);
			}
		}
	}
}
0