結果

問題 No.769 UNOシミュレータ
ユーザー GrenacheGrenache
提出日時 2019-04-26 20:04:34
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,411 bytes
コンパイル時間 4,145 ms
コンパイル使用メモリ 77,816 KB
実行使用メモリ 56,516 KB
最終ジャッジ日時 2024-11-22 09:18:30
合計ジャッジ時間 14,899 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,412 KB
testcase_01 AC 142 ms
41,284 KB
testcase_02 AC 152 ms
41,344 KB
testcase_03 AC 146 ms
41,576 KB
testcase_04 AC 189 ms
41,916 KB
testcase_05 AC 186 ms
42,036 KB
testcase_06 AC 185 ms
42,260 KB
testcase_07 AC 190 ms
42,220 KB
testcase_08 AC 182 ms
41,924 KB
testcase_09 AC 238 ms
46,492 KB
testcase_10 AC 240 ms
46,016 KB
testcase_11 AC 236 ms
45,860 KB
testcase_12 AC 527 ms
48,408 KB
testcase_13 AC 478 ms
48,828 KB
testcase_14 AC 553 ms
48,560 KB
testcase_15 AC 637 ms
51,568 KB
testcase_16 AC 750 ms
51,744 KB
testcase_17 AC 768 ms
51,340 KB
testcase_18 AC 922 ms
55,392 KB
testcase_19 AC 916 ms
55,420 KB
testcase_20 AC 839 ms
55,172 KB
testcase_21 AC 916 ms
56,516 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