結果

問題 No.769 UNOシミュレータ
ユーザー GrenacheGrenache
提出日時 2019-04-26 20:04:34
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,411 bytes
コンパイル時間 4,309 ms
コンパイル使用メモリ 78,272 KB
実行使用メモリ 66,796 KB
最終ジャッジ日時 2024-05-02 00:34:12
合計ジャッジ時間 14,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,872 KB
testcase_01 AC 138 ms
53,984 KB
testcase_02 AC 148 ms
53,728 KB
testcase_03 AC 143 ms
54,016 KB
testcase_04 AC 185 ms
54,360 KB
testcase_05 AC 184 ms
54,196 KB
testcase_06 AC 180 ms
54,276 KB
testcase_07 AC 178 ms
54,496 KB
testcase_08 AC 182 ms
54,152 KB
testcase_09 AC 234 ms
57,980 KB
testcase_10 AC 229 ms
57,796 KB
testcase_11 AC 227 ms
57,552 KB
testcase_12 AC 566 ms
59,612 KB
testcase_13 AC 578 ms
60,032 KB
testcase_14 AC 528 ms
59,668 KB
testcase_15 AC 779 ms
61,740 KB
testcase_16 AC 765 ms
61,624 KB
testcase_17 AC 769 ms
62,216 KB
testcase_18 AC 878 ms
66,012 KB
testcase_19 AC 910 ms
65,508 KB
testcase_20 AC 878 ms
66,524 KB
testcase_21 AC 883 ms
66,796 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder769 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int m = sc.nextInt();

		int[] num = new int[n];
		int win = 0;
		int d = 1;
		int dup = 0;
		String prev = "";
		for (int i = 0; i < m; i++) {
			String l = sc.next();

			if (prev.equals("drawtwo") && !l.equals(prev)) {
				num[win] += 2 * dup;
				dup = 0;
				win += d;
			} else if (prev.equals("drawfour") && !l.equals(prev)) {
				num[win] += 4 * dup;
				dup = 0;
				win += d;
			}
			win = (win + n) % n;
			
			switch (l) {
			case "number":
				num[win]--;
				win += d;
				break;
			case "drawtwo":
				num[win]--;
				dup++;
				win += d;
				break;
			case "drawfour":
				num[win]--;
				dup++;
				win += d;
				break;
			case "skip":
				num[win]--;
				win += 2 * d;
				break;
			case "reverse":
				num[win]--;
				d = -d;
				win += d;
				break;
			}
			
			win = (win + n) % n;
			prev = l;
		}

		win -= d;
		win = (win + n) % n;
		
		pr.printf("%d %d%n", win + 1, -num[win]);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0