結果

問題 No.769 UNOシミュレータ
ユーザー masamasa
提出日時 2019-01-16 14:39:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 371 ms / 2,000 ms
コード長 2,781 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 52,076 KB
最終ジャッジ日時 2024-11-22 09:06:30
合計ジャッジ時間 9,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,020 KB
testcase_01 AC 122 ms
41,096 KB
testcase_02 AC 124 ms
41,156 KB
testcase_03 AC 125 ms
40,888 KB
testcase_04 AC 132 ms
41,504 KB
testcase_05 AC 130 ms
41,552 KB
testcase_06 AC 131 ms
41,140 KB
testcase_07 AC 132 ms
41,380 KB
testcase_08 AC 134 ms
41,612 KB
testcase_09 AC 170 ms
42,068 KB
testcase_10 AC 170 ms
41,864 KB
testcase_11 AC 170 ms
41,996 KB
testcase_12 AC 265 ms
45,932 KB
testcase_13 AC 268 ms
45,948 KB
testcase_14 AC 268 ms
45,820 KB
testcase_15 AC 312 ms
48,692 KB
testcase_16 AC 309 ms
48,812 KB
testcase_17 AC 313 ms
50,280 KB
testcase_18 AC 371 ms
51,968 KB
testcase_19 AC 369 ms
51,516 KB
testcase_20 AC 368 ms
51,540 KB
testcase_21 AC 348 ms
52,076 KB
testcase_22 AC 122 ms
40,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line[] = br.readLine().split(" ");
        int N = Integer.parseInt(line[0]);
        long M = Integer.parseInt(line[1]);
        
        // 酔っ払いたちの生成
        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 = br.readLine();

            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