結果

問題 No.201 yukicoderじゃんけん
ユーザー papinianuspapinianus
提出日時 2016-06-20 15:27:51
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 30,764 KB
実行使用メモリ 31,388 KB
最終ジャッジ日時 2024-10-11 05:27:28
合計ジャッジ時間 2,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,176 KB
testcase_01 AC 41 ms
31,120 KB
testcase_02 AC 41 ms
31,180 KB
testcase_03 AC 44 ms
30,908 KB
testcase_04 WA -
testcase_05 AC 40 ms
31,388 KB
testcase_06 AC 41 ms
30,908 KB
testcase_07 AC 40 ms
31,172 KB
testcase_08 AC 41 ms
30,888 KB
testcase_09 AC 40 ms
31,024 KB
testcase_10 AC 41 ms
30,820 KB
testcase_11 AC 40 ms
31,384 KB
testcase_12 AC 40 ms
31,316 KB
testcase_13 AC 40 ms
30,972 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
31,344 KB
testcase_17 AC 40 ms
31,028 KB
testcase_18 AC 41 ms
31,108 KB
testcase_19 AC 40 ms
30,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($first_name, $first_point, $devnull) = explode(' ', trim(fgets(STDIN)));
list($second_name, $second_point, $devnull) = explode(' ', trim(fgets(STDIN)));
if($first_point == $second_point) {
    echo '-1';
} else if($first_point > $second_point) {
    echo $first_name;
} else {
    echo $second_name;
}
echo PHP_EOL;
0