結果

問題 No.264 じゃんけん
ユーザー tana_ffeetana_ffee
提出日時 2020-05-30 11:34:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 288 bytes
コンパイル時間 1,257 ms
コンパイル使用メモリ 30,648 KB
実行使用メモリ 31,260 KB
最終ジャッジ日時 2024-11-07 07:44:17
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,100 KB
testcase_01 AC 42 ms
30,732 KB
testcase_02 AC 42 ms
31,056 KB
testcase_03 AC 42 ms
31,100 KB
testcase_04 AC 41 ms
31,260 KB
testcase_05 AC 42 ms
31,060 KB
testcase_06 AC 42 ms
30,876 KB
testcase_07 AC 42 ms
30,992 KB
testcase_08 AC 43 ms
30,868 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(" ", trim(fgets(STDIN)));
$input1 = $array[0];
$input2 = $array[1];
$ans = 0;
if ($input1 == $input2) {
	$ans = "Drew";
} else if ($input1 == 2 && $input2 == 0){
	$ans = "Won";
} else if ($input1+1 == $input2) {
	$ans = "Won";
} else {
	$ans = "Lost";
}

echo $ans;
0