結果

問題 No.201 yukicoderじゃんけん
ユーザー dorakazu8134dorakazu8134
提出日時 2015-05-09 09:10:55
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 30,736 KB
実行使用メモリ 31,136 KB
最終ジャッジ日時 2024-07-05 21:08:02
合計ジャッジ時間 3,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
30,588 KB
testcase_01 AC 33 ms
30,804 KB
testcase_02 WA -
testcase_03 AC 32 ms
30,888 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 32 ms
30,996 KB
testcase_08 AC 32 ms
31,128 KB
testcase_09 WA -
testcase_10 AC 31 ms
30,920 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
30,768 KB
testcase_15 AC 32 ms
30,968 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 32 ms
30,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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{
	echo $name[0]."\n";
}
0