結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-07-17 16:57:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 60,952 KB
最終ジャッジ日時 2024-10-08 06:58:01
合計ジャッジ時間 7,035 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
55,312 KB
testcase_01 AC 241 ms
57,416 KB
testcase_02 AC 245 ms
57,204 KB
testcase_03 AC 280 ms
58,036 KB
testcase_04 AC 156 ms
55,036 KB
testcase_05 AC 156 ms
54,988 KB
testcase_06 AC 154 ms
54,928 KB
testcase_07 AC 152 ms
55,072 KB
testcase_08 AC 169 ms
55,248 KB
testcase_09 AC 253 ms
57,440 KB
testcase_10 AC 569 ms
60,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        PrintWriter pw = new PrintWriter(System.out);
        int N = sc.nextInt();
        for(int i=1; i<=N/3; i++){
            for(int j=i; j<=N/2; j++){
                int k = N-(i+j);
                if(k>=j){
                    pw.println(i+" "+j+" "+k);
                }else{
                    break;
                }
            }
        }
        pw.flush();
    }
}
0