結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー takepantakepan
提出日時 2017-06-02 22:33:07
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,083 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 31,408 KB
最終ジャッジ日時 2024-09-22 02:02:55
合計ジャッジ時間 6,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
31,112 KB
testcase_01 AC 73 ms
31,136 KB
testcase_02 AC 66 ms
31,264 KB
testcase_03 AC 111 ms
31,372 KB
testcase_04 AC 39 ms
31,244 KB
testcase_05 AC 40 ms
31,408 KB
testcase_06 AC 39 ms
31,152 KB
testcase_07 AC 40 ms
31,212 KB
testcase_08 AC 41 ms
31,408 KB
testcase_09 AC 87 ms
31,372 KB
testcase_10 AC 1,083 ms
30,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    fscanf (STDIN, "%d", $N);
    $a = 1;
    $b = 1;
    $c = $N - 2;

    while (true) {
        printf("%d %d %d\n", $a, $b, $c);
        if ($b + 2 <= $c) {
            $c--;
            $b++;
        } else {
            $a++;
            $b = $a;
            $c = $N - $a * 2;
        }
        if (($a > $b) || ($b > $c)) exit;
    }
0