結果

問題 No.769 UNOシミュレータ
ユーザー tsunabittsunabit
提出日時 2019-07-10 21:10:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 900 ms / 2,000 ms
コード長 2,046 bytes
コンパイル時間 4,092 ms
コンパイル使用メモリ 79,224 KB
実行使用メモリ 83,496 KB
最終ジャッジ日時 2024-05-02 00:36:25
合計ジャッジ時間 13,346 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
42,512 KB
testcase_01 AC 120 ms
42,076 KB
testcase_02 AC 133 ms
42,076 KB
testcase_03 AC 133 ms
41,740 KB
testcase_04 AC 184 ms
44,308 KB
testcase_05 AC 183 ms
43,740 KB
testcase_06 AC 166 ms
43,900 KB
testcase_07 AC 170 ms
42,604 KB
testcase_08 AC 184 ms
42,124 KB
testcase_09 AC 229 ms
48,060 KB
testcase_10 AC 222 ms
48,652 KB
testcase_11 AC 217 ms
48,644 KB
testcase_12 AC 516 ms
53,100 KB
testcase_13 AC 484 ms
54,676 KB
testcase_14 AC 506 ms
54,396 KB
testcase_15 AC 746 ms
65,136 KB
testcase_16 AC 679 ms
72,988 KB
testcase_17 AC 624 ms
65,752 KB
testcase_18 AC 835 ms
83,388 KB
testcase_19 AC 844 ms
83,400 KB
testcase_20 AC 846 ms
83,496 KB
testcase_21 AC 900 ms
83,184 KB
testcase_22 AC 143 ms
54,656 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