結果

問題 No.769 UNOシミュレータ
ユーザー face4face4
提出日時 2018-12-01 18:28:08
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,971 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 78,376 KB
実行使用メモリ 58,208 KB
最終ジャッジ日時 2024-11-22 08:39:55
合計ジャッジ時間 8,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
51,176 KB
testcase_01 AC 95 ms
52,952 KB
testcase_02 AC 84 ms
51,164 KB
testcase_03 AC 83 ms
51,220 KB
testcase_04 AC 87 ms
51,552 KB
testcase_05 AC 88 ms
51,580 KB
testcase_06 AC 103 ms
51,688 KB
testcase_07 AC 89 ms
51,696 KB
testcase_08 AC 87 ms
51,316 KB
testcase_09 AC 147 ms
53,988 KB
testcase_10 AC 148 ms
53,852 KB
testcase_11 AC 138 ms
53,812 KB
testcase_12 AC 235 ms
58,208 KB
testcase_13 AC 224 ms
57,448 KB
testcase_14 AC 216 ms
57,192 KB
testcase_15 AC 271 ms
57,736 KB
testcase_16 AC 275 ms
57,212 KB
testcase_17 AC 273 ms
57,956 KB
testcase_18 AC 308 ms
57,232 KB
testcase_19 AC 303 ms
56,896 KB
testcase_20 AC 308 ms
57,736 KB
testcase_21 AC 303 ms
57,436 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class A{
    A() {}

    int put[], draw[];
    int n, m, turn, dir;
    
    void proceed(){
        turn = (turn+dir+n)%n;
    }

    void solve() throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        String line[] = br.readLine().split(" ");
        n = Integer.parseInt(line[0]);
        m = Integer.parseInt(line[1]);

        put = new int[n];
        draw = new int[n];
        int d2 = 0;
        int d4 = 0;
        turn = 0;
        dir = 1;

        String card;
        while(m-- > 0){
            card = br.readLine();

            if(d2 > 0 && card.equals("drawtwo")){
                d2++;
                put[turn]++;
                proceed();
                continue;
            }
    
            if(d4 > 0 && card.equals("drawfour")){
                d4++;
                put[turn]++;
                proceed();
                continue;
            }
    
            if(d2 > 0){
                draw[turn] += 2*d2;
                d2 = 0;
                proceed();
            }
            
            if(d4 > 0){
                draw[turn] += 4*d4;
                d4 = 0;
                proceed();
            }
    
            put[turn]++;
    
            if(card.equals("drawtwo")){
                d2++;
            }else if(card.equals("drawfour")){
                d4++;
            }else if(card.equals("skip")){
                proceed();
            }else if(card.equals("reverse")){
                dir *= -1;
            }else if(card.equals("number")){
                // do nothing.
            }

            proceed();
        }

        turn = (turn-dir+n)%n;

        System.out.println((turn+1) + " " + (put[turn]-draw[turn]));
    }
}

class Main{
    public static void main(String[] args) throws IOException{
        new A().solve();
    }
}
0