結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:13:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,680 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 3,565 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 64,948 KB
最終ジャッジ日時 2024-11-24 11:57:30
合計ジャッジ時間 8,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
55,120 KB
testcase_01 AC 414 ms
60,204 KB
testcase_02 AC 314 ms
58,636 KB
testcase_03 AC 457 ms
64,364 KB
testcase_04 AC 142 ms
55,048 KB
testcase_05 AC 135 ms
54,904 KB
testcase_06 AC 128 ms
54,904 KB
testcase_07 AC 152 ms
55,276 KB
testcase_08 AC 228 ms
55,156 KB
testcase_09 AC 444 ms
60,312 KB
testcase_10 AC 1,680 ms
64,948 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