結果

問題 No.769 UNOシミュレータ
ユーザー masamasa
提出日時 2019-01-16 14:05:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 841 ms / 2,000 ms
コード長 2,600 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 59,784 KB
最終ジャッジ日時 2024-05-02 00:25:32
合計ジャッジ時間 11,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,484 KB
testcase_01 AC 112 ms
41,364 KB
testcase_02 AC 116 ms
41,104 KB
testcase_03 AC 124 ms
42,208 KB
testcase_04 AC 156 ms
42,084 KB
testcase_05 AC 168 ms
42,656 KB
testcase_06 AC 177 ms
42,080 KB
testcase_07 AC 169 ms
42,184 KB
testcase_08 AC 166 ms
42,228 KB
testcase_09 AC 228 ms
45,740 KB
testcase_10 AC 225 ms
45,916 KB
testcase_11 AC 214 ms
46,036 KB
testcase_12 AC 525 ms
52,484 KB
testcase_13 AC 505 ms
52,248 KB
testcase_14 AC 500 ms
52,312 KB
testcase_15 AC 661 ms
57,400 KB
testcase_16 AC 703 ms
57,676 KB
testcase_17 AC 670 ms
57,480 KB
testcase_18 AC 829 ms
59,784 KB
testcase_19 AC 841 ms
59,780 KB
testcase_20 AC 805 ms
59,564 KB
testcase_21 AC 777 ms
59,540 KB
testcase_22 AC 120 ms
41,068 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