結果

問題 No.769 UNOシミュレータ
ユーザー one_meets_sevenone_meets_seven
提出日時 2019-01-04 04:30:35
言語 Go
(1.22.1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,245 bytes
コンパイル時間 12,520 ms
コンパイル使用メモリ 222,068 KB
実行使用メモリ 7,512 KB
最終ジャッジ日時 2024-05-02 00:24:25
合計ジャッジ時間 14,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,948 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 19 ms
6,948 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 32 ms
6,944 KB
testcase_16 AC 32 ms
6,940 KB
testcase_17 AC 32 ms
6,940 KB
testcase_18 AC 51 ms
7,480 KB
testcase_19 AC 52 ms
7,512 KB
testcase_20 AC 51 ms
7,476 KB
testcase_21 AC 52 ms
7,484 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

func main() {
	run()
}

type state struct {
	n        int
	players  map[int]int
	who      int
	prevDraw int
	prev     string
	d        int
}

func (s *state) next() {
	s.who = (s.who + s.d + s.n) % s.n
}

func (s *state) put() {
	s.players[s.who]++
}

func (s *state) draw() {
	s.players[s.who] -= s.prevDraw
	s.prevDraw = 0
}

func run() {
	setSpace()
	n := readN()
	m := readN()

	s := &state{
		n:       n,
		players: make(map[int]int, n),
		d:       1,
	}
	for i := 0; i < m; i++ {
		card := read()
		if s.prev != card && strings.HasPrefix(s.prev, "draw") {
			s.draw()
			s.next()
		}
		s.put()
		switch card {
		case "drawtwo":
			s.prevDraw += 2
		case "drawfour":
			s.prevDraw += 4
		case "skip":
			s.next()
		case "reverse":
			s.d *= -1
		}
		s.prev = card
		s.next()
	}
	// 一人前に戻る
	s.who = (s.who - s.d + s.n) % s.n
	fmt.Printf("%d %d\n", s.who+1, s.players[s.who])
}

var sc = bufio.NewScanner(os.Stdin)

func setSpace() {
	sc.Split(bufio.ScanWords)
}

func setLine() {
	sc.Split(bufio.ScanLines)
}

func read() string {
	sc.Scan()
	return sc.Text()
}

func readN() int {
	n, err := strconv.Atoi(read())
	if err != nil {
		panic(err)
	}
	return n
}
0