結果

問題 No.441 和か積
ユーザー tazakkytazakky
提出日時 2017-10-10 12:52:52
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 1,320 ms
コンパイル使用メモリ 30,604 KB
実行使用メモリ 31,188 KB
最終ジャッジ日時 2024-11-17 08:24:10
合計ジャッジ時間 3,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,776 KB
testcase_01 AC 38 ms
30,764 KB
testcase_02 AC 42 ms
30,772 KB
testcase_03 AC 37 ms
30,772 KB
testcase_04 AC 40 ms
30,804 KB
testcase_05 AC 37 ms
30,860 KB
testcase_06 AC 39 ms
30,820 KB
testcase_07 AC 40 ms
30,944 KB
testcase_08 AC 40 ms
30,760 KB
testcase_09 AC 41 ms
31,032 KB
testcase_10 AC 37 ms
30,724 KB
testcase_11 AC 41 ms
31,088 KB
testcase_12 WA -
testcase_13 AC 40 ms
30,820 KB
testcase_14 AC 37 ms
30,892 KB
testcase_15 AC 41 ms
30,780 KB
testcase_16 AC 40 ms
31,068 KB
testcase_17 AC 40 ms
30,824 KB
testcase_18 AC 41 ms
31,096 KB
testcase_19 AC 38 ms
30,800 KB
testcase_20 AC 42 ms
30,904 KB
testcase_21 AC 38 ms
31,064 KB
testcase_22 AC 41 ms
30,560 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 40 ms
30,920 KB
testcase_26 WA -
testcase_27 AC 40 ms
31,100 KB
testcase_28 AC 39 ms
31,188 KB
testcase_29 AC 42 ms
31,000 KB
testcase_30 AC 40 ms
30,932 KB
testcase_31 AC 41 ms
30,852 KB
testcase_32 AC 41 ms
30,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    list($a, $b) = explode(" ", trim(fgets(STDIN)));
    if($a + $b > $a * $b){
        echo "S\n";
    }elseif($a + $b < $a * $b){
        echo "P\n";
    }elseif($a + $b == $a * $b){
        echo "E\n";
    }

?>
0