結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー takepantakepan
提出日時 2016-11-18 23:34:17
言語 PHP
(843.2)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 32,268 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-11-26 08:40:15
合計ジャッジ時間 1,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,440 KB
testcase_01 AC 36 ms
31,484 KB
testcase_02 AC 34 ms
31,128 KB
testcase_03 WA -
testcase_04 AC 36 ms
31,120 KB
testcase_05 AC 36 ms
31,328 KB
testcase_06 AC 39 ms
31,164 KB
testcase_07 WA -
testcase_08 AC 36 ms
30,968 KB
testcase_09 WA -
testcase_10 AC 39 ms
31,324 KB
testcase_11 AC 36 ms
31,144 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);

    $intA = intval($A);
    $intB = intval($B);

    if ($intA != $A || $intB != $B) {
    	exit("NG\n");
    } 

    // 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