結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-29 10:08:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,878 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 5,935 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 65,484 KB
最終ジャッジ日時 2024-06-30 23:44:31
合計ジャッジ時間 12,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 285 ms
55,532 KB
testcase_01 AC 403 ms
61,012 KB
testcase_02 AC 364 ms
58,876 KB
testcase_03 AC 518 ms
64,032 KB
testcase_04 AC 163 ms
55,024 KB
testcase_05 AC 162 ms
55,000 KB
testcase_06 AC 161 ms
55,076 KB
testcase_07 AC 185 ms
55,084 KB
testcase_08 AC 233 ms
54,920 KB
testcase_09 AC 440 ms
63,008 KB
testcase_10 AC 1,878 ms
65,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No522{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();

		for(int a = 1; a <= n/3; a++){
			for(int b = a; b <= (n-a)/2; b++){
				System.out.println(a+" "+b+" "+(n-a-b));
			}
		}
	}
}
0