結果

問題 No.769 UNOシミュレータ
ユーザー masamasa
提出日時 2019-01-16 14:39:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 2,781 bytes
コンパイル時間 2,761 ms
コンパイル使用メモリ 78,504 KB
実行使用メモリ 51,840 KB
最終ジャッジ日時 2024-05-02 00:25:13
合計ジャッジ時間 7,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,828 KB
testcase_01 AC 113 ms
40,900 KB
testcase_02 AC 107 ms
40,940 KB
testcase_03 AC 98 ms
40,876 KB
testcase_04 AC 111 ms
40,764 KB
testcase_05 AC 119 ms
41,024 KB
testcase_06 AC 111 ms
40,924 KB
testcase_07 AC 109 ms
41,392 KB
testcase_08 AC 108 ms
40,880 KB
testcase_09 AC 159 ms
42,200 KB
testcase_10 AC 155 ms
42,144 KB
testcase_11 AC 159 ms
42,240 KB
testcase_12 AC 226 ms
45,872 KB
testcase_13 AC 230 ms
45,792 KB
testcase_14 AC 222 ms
45,840 KB
testcase_15 AC 267 ms
48,288 KB
testcase_16 AC 264 ms
48,504 KB
testcase_17 AC 258 ms
48,280 KB
testcase_18 AC 308 ms
51,352 KB
testcase_19 AC 336 ms
51,840 KB
testcase_20 AC 318 ms
51,472 KB
testcase_21 AC 311 ms
50,996 KB
testcase_22 AC 101 ms
40,928 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