結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-26 18:15:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,866 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 77,108 KB
実行使用メモリ 54,028 KB
最終ジャッジ日時 2024-05-03 12:09:04
合計ジャッジ時間 9,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
43,448 KB
testcase_01 AC 391 ms
48,892 KB
testcase_02 AC 367 ms
46,684 KB
testcase_03 AC 498 ms
52,260 KB
testcase_04 AC 142 ms
42,588 KB
testcase_05 AC 151 ms
42,588 KB
testcase_06 AC 144 ms
42,500 KB
testcase_07 AC 177 ms
42,616 KB
testcase_08 AC 209 ms
42,680 KB
testcase_09 AC 438 ms
51,504 KB
testcase_10 AC 1,866 ms
54,028 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);}
				else {break;}
			}
		}
	}
	public static void main(String[] args) {
		int n = sc.nextInt();
		solve(n);
	}
	static Scanner sc = new Scanner(System.in);
}
0