結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー takepantakepan
提出日時 2016-11-18 23:34:17
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 4,097 ms
コンパイル使用メモリ 30,988 KB
実行使用メモリ 31,452 KB
最終ジャッジ日時 2024-05-04 18:53:36
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
31,356 KB
testcase_01 AC 33 ms
31,104 KB
testcase_02 AC 34 ms
31,452 KB
testcase_03 WA -
testcase_04 AC 35 ms
31,248 KB
testcase_05 AC 33 ms
31,168 KB
testcase_06 AC 33 ms
30,816 KB
testcase_07 WA -
testcase_08 AC 32 ms
30,892 KB
testcase_09 WA -
testcase_10 AC 33 ms
31,060 KB
testcase_11 AC 33 ms
30,972 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