結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー e-teste-test
提出日時 2017-02-14 18:26:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 31,016 KB
実行使用メモリ 31,348 KB
最終ジャッジ日時 2024-06-09 12:03:09
合計ジャッジ時間 1,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,960 KB
testcase_01 AC 43 ms
31,032 KB
testcase_02 AC 39 ms
31,004 KB
testcase_03 AC 42 ms
31,036 KB
testcase_04 AC 39 ms
30,960 KB
testcase_05 AC 39 ms
31,224 KB
testcase_06 AC 41 ms
31,348 KB
testcase_07 AC 40 ms
30,764 KB
testcase_08 AC 39 ms
30,668 KB
testcase_09 AC 39 ms
31,060 KB
testcase_10 AC 39 ms
30,904 KB
testcase_11 AC 40 ms
31,100 KB
testcase_12 AC 43 ms
31,028 KB
testcase_13 AC 41 ms
31,244 KB
testcase_14 AC 42 ms
31,164 KB
testcase_15 AC 41 ms
31,196 KB
testcase_16 AC 40 ms
31,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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

// main
if (!checkNum($str1)) { exit('NG'); };
if (!checkNum($str2)) { exit('NG'); };
exit('OK');

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