結果

問題 No.769 UNOシミュレータ
ユーザー masamasa
提出日時 2019-01-16 14:05:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,086 ms / 2,000 ms
コード長 2,600 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 83,540 KB
実行使用メモリ 70,084 KB
最終ジャッジ日時 2024-11-22 09:06:51
合計ジャッジ時間 16,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,312 KB
testcase_01 AC 144 ms
41,216 KB
testcase_02 AC 148 ms
41,320 KB
testcase_03 AC 150 ms
41,688 KB
testcase_04 AC 190 ms
42,420 KB
testcase_05 AC 193 ms
41,860 KB
testcase_06 AC 211 ms
42,140 KB
testcase_07 AC 206 ms
42,184 KB
testcase_08 AC 188 ms
42,128 KB
testcase_09 AC 260 ms
45,912 KB
testcase_10 AC 268 ms
45,844 KB
testcase_11 AC 258 ms
45,864 KB
testcase_12 AC 591 ms
52,132 KB
testcase_13 AC 604 ms
52,516 KB
testcase_14 AC 608 ms
52,488 KB
testcase_15 AC 831 ms
57,816 KB
testcase_16 AC 823 ms
57,760 KB
testcase_17 AC 855 ms
57,604 KB
testcase_18 AC 1,086 ms
69,884 KB
testcase_19 AC 987 ms
59,444 KB
testcase_20 AC 1,010 ms
59,436 KB
testcase_21 AC 1,061 ms
70,084 KB
testcase_22 AC 142 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int N  = sc.nextInt();
        long M = sc.nextLong();
        sc.nextLine();
        
        // 酔っ払いたちの生成
        Yopparai yop[] = new Yopparai[N];
        for (int i = 0; i < N; i++) {
            yop[i] = new Yopparai(i + 1);
        }
        
        // UNOシステム
        boolean reverse = false;
        boolean skip    = false;
        int order = 0;
        long drawtwoCount = 0;
        long drawforCount = 0;
        for (long i = 0; i < M; i++) {
            String card = sc.nextLine();

            if (drawtwoCount > 0 && !card.equals("drawtwo")) {
                yop[order].math -= drawtwoCount * 2;
                drawtwoCount = 0;
                order = nextOrder(N, reverse, order, skip);
            }
            if (drawforCount > 0 && !card.equals("drawfour")) {
                yop[order].math -= drawforCount * 4;
                drawforCount = 0;
                order = nextOrder(N, reverse, order, skip);
            }
            
            switch (card) {
                case "number" :
                    break;
                
                case "drawtwo" :
                    drawtwoCount++;
                    break;
                    
                case "drawfour" :
                    drawforCount++;
                    break;
                    
                case "skip" :
                    skip = true;
                    break;
                    
                case "reverse" :
                    reverse = !reverse;
                    break;
            }
            
            yop[order].math++;
            
            if (i != M - 1) order = nextOrder(N, reverse, order, skip);
            skip  = false;
        }

        System.out.printf("%d %d", yop[order].id, yop[order].math);
    }
    
    // 次の酔っ払いの手番を求める
    public static int nextOrder(int N, boolean reverse, int order, boolean skip) {
        int tmp = 0;

        if (reverse) {
            tmp = order - 1; 
            tmp = tmp < 0 ? N - 1 : order - 1;
            if (skip) tmp = tmp - 1 < 0 ? N - 1 : tmp - 1;
        } else {
            tmp = order + 1; 
            tmp = tmp > N - 1 ? 0 : order + 1;
            if (skip) tmp = tmp + 1 > N - 1 ? 0 : tmp + 1;
        }
        
        return tmp;
    }
}

class Yopparai {
    public int id;
    public long math;
    
    public Yopparai (int a) {
        id = a;
        math = 0;
    }
}
0