結果

問題 No.201 yukicoderじゃんけん
ユーザー dorakazu8134dorakazu8134
提出日時 2015-05-09 09:10:55
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 18,332 KB
実行使用メモリ 19,004 KB
最終ジャッジ日時 2023-09-19 09:24:18
合計ジャッジ時間 3,191 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
18,604 KB
testcase_01 AC 17 ms
18,792 KB
testcase_02 WA -
testcase_03 AC 16 ms
18,760 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 16 ms
18,816 KB
testcase_08 AC 16 ms
18,740 KB
testcase_09 WA -
testcase_10 AC 16 ms
18,676 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 16 ms
18,904 KB
testcase_15 AC 16 ms
18,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 17 ms
18,920 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