結果

問題 No.769 UNOシミュレータ
ユーザー tatt61880tatt61880
提出日時 2020-04-27 19:22:08
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 147,064 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 11:00:57
合計ジャッジ時間 3,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 55 ms
5,376 KB
testcase_16 AC 56 ms
5,376 KB
testcase_17 AC 55 ms
5,376 KB
testcase_18 AC 81 ms
5,376 KB
testcase_19 AC 82 ms
5,376 KB
testcase_20 AC 81 ms
5,376 KB
testcase_21 AC 86 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var nums: []int :: #[n]int
	var reverseFlag: bool :: false
	var skipFlag: bool :: false
	var id: int :: 0
	var prev: []char :: "-"
	var add: int :: 0
	for i(1, m)
		var s: []char :: cui@inputStr()
		if(prev[0] = 'd' & s <> prev)
			do nums[id] :- add
			do add :: 0
			do next(&id, reverseFlag, n)
		end if
		
		switch(s)
		case "drawtwo", "drawfour"
			do add :+ s = "drawtwo" ?(2, 4)
		case "skip"
			do skipFlag :: true
		case "reverse"
			do reverseFlag :: !reverseFlag
		end switch
		do nums[id] :+ 1
		do prev :: s
		
		if(i <> m)
			for(1, skipFlag ?(2, 1))
				do next(&id, reverseFlag, n)
			end for
			do skipFlag :: false
		end if
	end for
	do cui@print("\{id + 1} \{nums[id]}\n")
	
	func next(id: &int, reverseFlag: bool, n: int)
		do id :+ reverseFlag ?(n - 1, 1)
		do id :% n
	end func
end func
0