結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー htensaihtensai
提出日時 2019-12-26 12:33:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 1,888 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 82,860 KB
最終ジャッジ日時 2024-10-03 07:33:48
合計ジャッジ時間 5,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,728 KB
testcase_01 AC 151 ms
42,460 KB
testcase_02 AC 141 ms
42,364 KB
testcase_03 AC 166 ms
43,292 KB
testcase_04 AC 107 ms
41,380 KB
testcase_05 AC 111 ms
41,372 KB
testcase_06 AC 113 ms
41,280 KB
testcase_07 AC 112 ms
41,300 KB
testcase_08 AC 126 ms
43,352 KB
testcase_09 AC 172 ms
42,780 KB
testcase_10 AC 313 ms
82,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        for (int i = 1; i * 3 <= n; i++) {
            for (int j = i; i + j * 2 <= n; j++) {
                sb.append(i).append(" ").append(j).append(" ").append(n - i - j).append("\n");
            }
        }
        System.out.print(sb);
    }
}
0