結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー e-teste-test
提出日時 2017-02-14 18:15:18
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 30,916 KB
実行使用メモリ 31,340 KB
最終ジャッジ日時 2024-06-09 12:02:49
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,936 KB
testcase_01 AC 40 ms
31,180 KB
testcase_02 AC 39 ms
31,036 KB
testcase_03 WA -
testcase_04 AC 41 ms
31,216 KB
testcase_05 AC 42 ms
30,676 KB
testcase_06 AC 42 ms
30,820 KB
testcase_07 AC 38 ms
30,856 KB
testcase_08 AC 41 ms
31,340 KB
testcase_09 AC 40 ms
30,920 KB
testcase_10 AC 42 ms
30,668 KB
testcase_11 AC 41 ms
30,932 KB
testcase_12 WA -
testcase_13 AC 39 ms
30,976 KB
testcase_14 AC 40 ms
30,888 KB
testcase_15 AC 39 ms
31,164 KB
testcase_16 AC 38 ms
30,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
//0<=A,B<=12345
fscanf(STDIN, "%s", $str1);
fscanf(STDIN, "%s", $str2);
//print($str1.'::'.$str2."\n");

// main
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 < 12346) {
        return true;
    }
    return false;
}

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