結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー takepantakepan
提出日時 2016-11-18 23:32:19
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 4,636 ms
コンパイル使用メモリ 31,884 KB
実行使用メモリ 32,784 KB
最終ジャッジ日時 2024-05-04 18:52:56
合計ジャッジ時間 5,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
32,532 KB
testcase_01 AC 35 ms
32,532 KB
testcase_02 AC 36 ms
32,528 KB
testcase_03 WA -
testcase_04 AC 33 ms
32,532 KB
testcase_05 AC 35 ms
32,660 KB
testcase_06 AC 33 ms
32,656 KB
testcase_07 WA -
testcase_08 AC 34 ms
32,660 KB
testcase_09 WA -
testcase_10 AC 33 ms
32,532 KB
testcase_11 AC 33 ms
32,532 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    fscanf (STDIN, "%s", $A);
    fscanf (STDIN, "%s", $B);

    if (!preg_match("/^[0-9]+$/", $A)) {
    	exit("NG\n");
    }

    if (!preg_match("/^[0-9]+$/", $B)) {
    	exit("NG\n");
    }

    if ($A <= 12345 && $B <= 12345) {
    	echo ($A + $B) . "\n";
    } else {
    	echo "NG\n";
    }
0