結果

問題 No.769 UNOシミュレータ
ユーザー tsunabittsunabit
提出日時 2019-07-10 21:10:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 994 ms / 2,000 ms
コード長 2,046 bytes
コンパイル時間 4,010 ms
コンパイル使用メモリ 80,360 KB
実行使用メモリ 75,152 KB
最終ジャッジ日時 2024-11-22 09:21:11
合計ジャッジ時間 16,233 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,268 KB
testcase_01 AC 161 ms
42,360 KB
testcase_02 AC 169 ms
42,156 KB
testcase_03 AC 171 ms
42,284 KB
testcase_04 AC 215 ms
44,340 KB
testcase_05 AC 216 ms
44,016 KB
testcase_06 AC 209 ms
43,872 KB
testcase_07 AC 214 ms
44,152 KB
testcase_08 AC 211 ms
43,844 KB
testcase_09 AC 268 ms
48,256 KB
testcase_10 AC 269 ms
48,024 KB
testcase_11 AC 267 ms
47,960 KB
testcase_12 AC 584 ms
53,264 KB
testcase_13 AC 609 ms
53,416 KB
testcase_14 AC 599 ms
53,368 KB
testcase_15 AC 823 ms
65,060 KB
testcase_16 AC 807 ms
65,228 KB
testcase_17 AC 812 ms
65,880 KB
testcase_18 AC 991 ms
75,152 KB
testcase_19 AC 988 ms
74,072 KB
testcase_20 AC 994 ms
73,616 KB
testcase_21 AC 988 ms
74,968 KB
testcase_22 AC 157 ms
42,164 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);
    	// "number", "drawtwo", "drawfour", "skip", "reverse"
    	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]);
    			
//    			for(int hoge : h) {
//    	    		System.out.println(hoge);
//    	    	}
    			
    			return;
    		}
    		
//    		System.out.println("i = " + i + " c = " + (c + 1) + " maisu = " + h[c] + " fuda = " + t[i]);
    		
    		if("number".equals(t[i])) {
//    			c = c + (r * 1);
    			c = count(c + (r * 1), n);
    		}else if("drawtwo".equals(t[i])) {
//    			if(i < m - 2 && "drawtwo".equals(t[i + 1])) {
    			if(i < m - 1 && "drawtwo".equals(t[i + 1])) {
//    				c = c + (r * 1);
    				c = count(c + (r * 1), n);
    				drow++;
    			}else {
    				h[count(c + (r * 1), n)] -= 2 * drow;
//    				c = c + (r * 2);
    				c = count(c + (r * 2), n);
    				drow = 1;
    			}
    		}else if("drawfour".equals(t[i])) {
//    			if(i < m - 2 && "drawfour".equals(t[i + 1])) {
    			if(i < m - 1 && "drawfour".equals(t[i + 1])) {
//    				c = c + (r * 1);
    				c = count(c + (r * 1), n);
    				drow++;
    			}else {
    				h[count(c + (r * 1), n)] -= 4 * drow;
//    				c = c + (r * 2);
    				c = count(c + (r * 2), n);
    				drow = 1;
    			}
    		}else if("skip".equals(t[i])) {
//    			c = c + (r * 2);
    			c = count(c + (r * 2), n);
    		}else if("reverse".equals(t[i])) {
    			r = r * -1;
//    			c = c + (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