結果

問題 No.201 yukicoderじゃんけん
ユーザー
提出日時 2016-01-20 18:41:55
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 919 ms
コンパイル使用メモリ 30,944 KB
実行使用メモリ 31,596 KB
最終ジャッジ日時 2024-09-21 14:51:03
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,560 KB
testcase_01 AC 42 ms
31,324 KB
testcase_02 AC 42 ms
31,320 KB
testcase_03 AC 41 ms
31,248 KB
testcase_04 WA -
testcase_05 AC 41 ms
31,596 KB
testcase_06 AC 42 ms
31,452 KB
testcase_07 AC 42 ms
31,224 KB
testcase_08 AC 41 ms
31,204 KB
testcase_09 AC 42 ms
31,192 KB
testcase_10 AC 42 ms
31,492 KB
testcase_11 AC 42 ms
31,404 KB
testcase_12 AC 41 ms
31,152 KB
testcase_13 AC 42 ms
31,124 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
31,224 KB
testcase_17 AC 42 ms
31,164 KB
testcase_18 AC 43 ms
31,388 KB
testcase_19 AC 42 ms
31,340 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$input1 = trim(fgets(STDIN));

list($player1,$player1Point,$player1hand) = explode(" ", $input1);

$input2 = trim(fgets(STDIN));

list($player2,$player2Point,$player2hand) = explode(" ", $input2);

if($player1Point > $player2Point){
    echo $player1."\n";
}else if($player1Point < $player2Point){
    echo $player2."\n";
}else{
    echo "-1"."\n";
}
0