結果

問題 No.8 N言っちゃダメゲーム
ユーザー horiesinitihoriesiniti
提出日時 2023-01-18 14:15:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,425 ms / 5,000 ms
コード長 263 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-06-11 15:57:51
合計ジャッジ時間 7,706 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 762 ms
38,016 KB
testcase_04 AC 1,425 ms
68,992 KB
testcase_05 AC 1,220 ms
68,992 KB
testcase_06 AC 487 ms
28,416 KB
testcase_07 AC 533 ms
28,160 KB
testcase_08 AC 612 ms
30,848 KB
testcase_09 AC 652 ms
32,256 KB
testcase_10 AC 690 ms
35,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f()
	n,m=gets.split(" ").map{|e| e.to_i}
	dp=Array.new(n+1,0)
	dp[1]=1
	s1=1
	2.upto(n){|i|
		if s1>0 then
			dp[i]=0
		else
			dp[i]=1
		end
		s1+=dp[i]
		if i-m>0 then
			s1-=dp[i-m]
		end
	}
	puts (dp[n]==1)?("Lose"):("Win")
end
n=gets.to_i
n.times{
	f()
}
0