結果

問題 No.8 N言っちゃダメゲーム
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-01 17:41:50
言語 PHP
(8.3.4)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 320 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 31,304 KB
最終ジャッジ日時 2024-07-05 17:22:57
合計ジャッジ時間 1,986 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
30,884 KB
testcase_01 AC 33 ms
31,128 KB
testcase_02 AC 33 ms
31,212 KB
testcase_03 AC 32 ms
30,840 KB
testcase_04 AC 33 ms
31,192 KB
testcase_05 AC 33 ms
31,304 KB
testcase_06 AC 33 ms
30,800 KB
testcase_07 AC 33 ms
31,200 KB
testcase_08 AC 33 ms
31,140 KB
testcase_09 AC 32 ms
31,148 KB
testcase_10 AC 32 ms
30,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$gametime = trim(fgets(STDIN));
$n = array();
$k = array();
for ( $in=0; $in<$gametime; $in++ ) {
	list($n[], $k[]) = explode(" ", trim(fgets(STDIN)));
}

for ( $time=0; $time<$gametime; $time++ ) {
	if ( (($n[$time]-2) % ($k[$time]+1)) < $k[$time] ) {
		echo "Win".PHP_EOL;
	}
	else {
		echo "Lose".PHP_EOL;
	}
}
0