結果

問題 No.769 UNOシミュレータ
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-04 14:46:00
言語 Go
(1.22.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,141 bytes
コンパイル時間 12,078 ms
コンパイル使用メモリ 229,672 KB
実行使用メモリ 8,080 KB
最終ジャッジ日時 2024-05-02 00:29:56
合計ジャッジ時間 30,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 9 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 9 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 79 ms
5,376 KB
testcase_10 AC 80 ms
5,376 KB
testcase_11 AC 79 ms
5,376 KB
testcase_12 AC 785 ms
6,016 KB
testcase_13 AC 778 ms
6,016 KB
testcase_14 AC 782 ms
6,016 KB
testcase_15 AC 1,559 ms
5,632 KB
testcase_16 AC 1,564 ms
5,632 KB
testcase_17 AC 1,552 ms
5,632 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

func main() {
	var n, m int
	_, _ = fmt.Scan(&n, &m)

	uc, dc := make([]int, n), make([]int, n) // 使ったカード, 引いたカード
	d, p := 1, 0                             // 向き, 誰のターンか(0~n-1)
	d2, d4 := false, false                   // 前の番でdraw2が使われたか, 前の番でdraw4が使われたか
	d2s, d4s := 0, 0                         // draw2が連続で使われた枚数, draw4が連続で使われた枚数
	for i := 0; i < m; i++ {
		if i != 0 {
			p = (p + n + d) % n
			// fmt.Println(p, d)
		}

		l := ""
		_, _ = fmt.Scan(&l)

		// fmt.Println(p, l)

		if d2 == true && l != "drawtwo" {
			dc[p] += d2s * 2
			d2 = false
			d2s = 0
			p = (p + n + d) % n // 次の人の番に移る
		}

		if d4 == true && l != "drawfour" {
			dc[p] += d4s * 4
			d4 = false
			d4s = 0
			p = (p + n + d) % n // 次の人の番に移る
		}

		uc[p]++
		switch l {
		case "drawtwo":
			d2 = true
			d2s++
		case "drawfour":
			d4 = true
			d4s++
		case "skip":
			p += d
		case "reverse":
			d *= -1
		}

		// fmt.Println(uc, dc)
	}
	fmt.Printf("%d %d\n", p+1, uc[p]-dc[p])
}
0