結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-29 10:16:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 76,780 KB
実行使用メモリ 61,248 KB
最終ジャッジ日時 2024-06-30 23:44:59
合計ジャッジ時間 8,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 223 ms
55,400 KB
testcase_01 AC 251 ms
57,448 KB
testcase_02 AC 235 ms
57,372 KB
testcase_03 AC 282 ms
58,120 KB
testcase_04 AC 157 ms
55,040 KB
testcase_05 AC 166 ms
55,188 KB
testcase_06 AC 147 ms
54,800 KB
testcase_07 AC 172 ms
55,352 KB
testcase_08 AC 197 ms
55,244 KB
testcase_09 AC 279 ms
57,500 KB
testcase_10 AC 611 ms
61,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

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

		int n = sc.nextInt();

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