結果

問題 No.337 P versus NP
ユーザー ねずねず
提出日時 2018-01-27 17:33:01
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 31,260 KB
実行使用メモリ 31,444 KB
最終ジャッジ日時 2024-06-09 05:32:40
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
31,096 KB
testcase_01 WA -
testcase_02 AC 41 ms
31,192 KB
testcase_03 AC 41 ms
30,996 KB
testcase_04 AC 42 ms
31,212 KB
testcase_05 WA -
testcase_06 AC 42 ms
31,184 KB
testcase_07 AC 42 ms
31,444 KB
testcase_08 AC 43 ms
31,368 KB
testcase_09 AC 42 ms
31,404 KB
testcase_10 AC 43 ms
31,436 KB
testcase_11 AC 42 ms
31,036 KB
testcase_12 AC 42 ms
31,440 KB
testcase_13 WA -
testcase_14 AC 42 ms
31,324 KB
testcase_15 AC 41 ms
31,280 KB
testcase_16 AC 42 ms
31,440 KB
testcase_17 AC 41 ms
31,320 KB
testcase_18 AC 41 ms
31,436 KB
testcase_19 AC 42 ms
31,152 KB
testcase_20 AC 41 ms
31,172 KB
testcase_21 AC 42 ms
31,192 KB
testcase_22 AC 41 ms
31,060 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $p) = explode(' ', trim(fgets(STDIN)));
echo $n == 1 ? '=' : '!=';
echo PHP_EOL;
?>
0