結果

問題 No.769 UNOシミュレータ
ユーザー tsunabittsunabit
提出日時 2019-07-10 21:12:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,104 ms / 2,000 ms
コード長 1,458 bytes
コンパイル時間 4,197 ms
コンパイル使用メモリ 79,232 KB
実行使用メモリ 75,332 KB
最終ジャッジ日時 2024-11-22 09:22:33
合計ジャッジ時間 15,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
42,272 KB
testcase_01 AC 161 ms
42,504 KB
testcase_02 AC 178 ms
42,440 KB
testcase_03 AC 172 ms
42,452 KB
testcase_04 AC 215 ms
44,232 KB
testcase_05 AC 218 ms
44,256 KB
testcase_06 AC 215 ms
43,768 KB
testcase_07 AC 212 ms
44,088 KB
testcase_08 AC 218 ms
44,184 KB
testcase_09 AC 268 ms
48,108 KB
testcase_10 AC 262 ms
48,056 KB
testcase_11 AC 269 ms
48,724 KB
testcase_12 AC 627 ms
53,452 KB
testcase_13 AC 509 ms
52,636 KB
testcase_14 AC 572 ms
53,388 KB
testcase_15 AC 819 ms
66,228 KB
testcase_16 AC 827 ms
65,936 KB
testcase_17 AC 789 ms
64,860 KB
testcase_18 AC 1,037 ms
75,332 KB
testcase_19 AC 1,005 ms
74,916 KB
testcase_20 AC 1,037 ms
73,884 KB
testcase_21 AC 1,104 ms
73,436 KB
testcase_22 AC 159 ms
42,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No769 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt(), m = sc.nextInt();
    	int[] h = new int[n];
    	String[] t = new String[m];
    	int c = 0;
    	int r = 1;
    	int drow = 1;
    	
    	for(int i = 0; i < m ; i++) {
    		t[i] = sc.next();
    	}
    	for(int i = 0; i < m; i++) {
    		h[c] += 1;
    		if(i == m - 1) {
    			System.out.println((c + 1) + " " + h[c]);
    			return;
    		}
    		if("number".equals(t[i])) {
    			c = count(c + (r * 1), n);
    		}else if("drawtwo".equals(t[i])) {
    			if(i < m - 1 && "drawtwo".equals(t[i + 1])) {
    				c = count(c + (r * 1), n);
    				drow++;
    			}else {
    				h[count(c + (r * 1), n)] -= 2 * drow;
    				c = count(c + (r * 2), n);
    				drow = 1;
    			}
    		}else if("drawfour".equals(t[i])) {
    			if(i < m - 1 && "drawfour".equals(t[i + 1])) {
    				c = count(c + (r * 1), n);
    				drow++;
    			}else {
    				h[count(c + (r * 1), n)] -= 4 * drow;
    				c = count(c + (r * 2), n);
    				drow = 1;
    			}
    		}else if("skip".equals(t[i])) {
    			c = count(c + (r * 2), n);
    		}else if("reverse".equals(t[i])) {
    			r = r * -1;
    			c = count(c + (r * 1), n);
    		}
    	}
    }
    public static int count(int c, int n) {
    	if(c > n -1) c = c - n;
		else if(c < 0) c = c + n;
    	return c;
    }
}
0