結果

問題 No.201 yukicoderじゃんけん
ユーザー dorakazu8134dorakazu8134
提出日時 2015-05-09 09:12:21
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 1,114 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-07-05 21:08:05
合計ジャッジ時間 2,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,204 KB
testcase_01 WA -
testcase_02 AC 42 ms
31,004 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
30,900 KB
testcase_11 AC 45 ms
31,068 KB
testcase_12 AC 45 ms
31,080 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 44 ms
30,900 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$name=array();
$point=array();

for($i=0;$i<2;$i++){
	fscanf(STDIN,"%s %d %s",$name[$i],$point[$i],$z);
}
if($point[0]<$point[1]){
	echo $name[1]."\n";
}
else if($point[0]==$point[1]){
	echo "-1\n";
}
else{
	echo $name[0]."\n";
}
0