結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー e-teste-test
提出日時 2017-02-14 18:18:07
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 31,364 KB
最終ジャッジ日時 2024-06-09 12:02:56
合計ジャッジ時間 1,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,228 KB
testcase_01 AC 42 ms
31,124 KB
testcase_02 AC 41 ms
30,908 KB
testcase_03 AC 42 ms
31,184 KB
testcase_04 AC 42 ms
30,784 KB
testcase_05 AC 44 ms
31,176 KB
testcase_06 AC 41 ms
31,328 KB
testcase_07 AC 41 ms
30,928 KB
testcase_08 AC 41 ms
31,296 KB
testcase_09 AC 41 ms
31,088 KB
testcase_10 AC 41 ms
31,364 KB
testcase_11 AC 41 ms
31,164 KB
testcase_12 AC 41 ms
31,100 KB
testcase_13 AC 42 ms
31,208 KB
testcase_14 AC 41 ms
31,108 KB
testcase_15 AC 42 ms
30,800 KB
testcase_16 AC 41 ms
31,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, "%s", $str1);
fscanf(STDIN, "%s", $str2);

if (!checkNum($str1)) { endPg('NG'); };
if (!checkNum($str2)) { endPg('NG'); };
endPg('OK');

function checkNum($val) {
    if ($val !== (string)(int)$val) {
        return false;
    }
    if ($val >= 0 && $val <= 12345) {
        return true;
    }
    return false;
}

function endPg($result) {
    echo $result."\n";
    exit;
}
0