結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:13:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,884 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 76,968 KB
実行使用メモリ 64,816 KB
最終ジャッジ日時 2024-05-03 12:07:17
合計ジャッジ時間 9,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 274 ms
55,576 KB
testcase_01 AC 398 ms
60,608 KB
testcase_02 AC 358 ms
59,024 KB
testcase_03 AC 508 ms
63,464 KB
testcase_04 AC 167 ms
55,128 KB
testcase_05 AC 153 ms
54,940 KB
testcase_06 AC 156 ms
54,756 KB
testcase_07 AC 176 ms
54,864 KB
testcase_08 AC 242 ms
55,408 KB
testcase_09 AC 423 ms
62,904 KB
testcase_10 AC 1,884 ms
64,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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