結果

問題 No.769 UNOシミュレータ
ユーザー tatt61880tatt61880
提出日時 2020-04-27 19:18:01
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,003 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 146,696 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-16 11:01:05
合計ジャッジ時間 3,686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 5 ms
6,944 KB
testcase_12 AC 33 ms
6,940 KB
testcase_13 AC 34 ms
6,940 KB
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 62 ms
6,940 KB
testcase_16 AC 64 ms
6,940 KB
testcase_17 AC 64 ms
6,940 KB
testcase_18 AC 95 ms
6,940 KB
testcase_19 AC 94 ms
6,940 KB
testcase_20 AC 95 ms
6,940 KB
testcase_21 AC 94 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var nums: []int :: #[n]int
	var reverseFlag: bool :: false
	var drawFlag: 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 a(drawFlag)
			if(s[0] = 'd' & s = prev)
				break a
			end if
			do drawFlag :: false
			do nums[id] :- add
			do add :: 0
			do next(&id, reverseFlag, n)
		end if
		
		switch(s)
		case "number"
		case "drawtwo", "drawfour"
			do add :+ s = "drawtwo" ?(2, 4)
			do drawFlag :: true
		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