結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Mcpu3Mcpu3
提出日時 2018-12-06 16:55:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 76,168 KB
実行使用メモリ 49,616 KB
最終ジャッジ日時 2024-09-14 02:34:12
合計ジャッジ時間 7,187 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
42,876 KB
testcase_01 AC 261 ms
44,284 KB
testcase_02 AC 260 ms
43,748 KB
testcase_03 AC 298 ms
46,300 KB
testcase_04 AC 152 ms
42,340 KB
testcase_05 AC 165 ms
42,608 KB
testcase_06 AC 168 ms
42,476 KB
testcase_07 AC 174 ms
42,644 KB
testcase_08 AC 188 ms
42,384 KB
testcase_09 AC 284 ms
44,872 KB
testcase_10 AC 595 ms
49,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.io.PrintWriter;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		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) pw.println(i + " " + j + " " + (N - i - j));
			}
		}
		pw.close();
	}
}
0