結果

問題 No.769 UNOシミュレータ
ユーザー 37zigen37zigen
提出日時 2020-03-22 04:08:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,085 ms / 2,000 ms
コード長 1,465 bytes
コンパイル時間 2,408 ms
コンパイル使用メモリ 81,600 KB
実行使用メモリ 74,848 KB
最終ジャッジ日時 2024-11-22 09:35:03
合計ジャッジ時間 14,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
42,452 KB
testcase_01 AC 164 ms
42,328 KB
testcase_02 AC 171 ms
42,536 KB
testcase_03 AC 172 ms
42,408 KB
testcase_04 AC 221 ms
44,280 KB
testcase_05 AC 209 ms
44,368 KB
testcase_06 AC 216 ms
44,516 KB
testcase_07 AC 224 ms
44,364 KB
testcase_08 AC 222 ms
44,332 KB
testcase_09 AC 273 ms
48,296 KB
testcase_10 AC 280 ms
48,344 KB
testcase_11 AC 267 ms
47,984 KB
testcase_12 AC 626 ms
53,432 KB
testcase_13 AC 618 ms
53,608 KB
testcase_14 AC 603 ms
53,380 KB
testcase_15 AC 839 ms
65,772 KB
testcase_16 AC 821 ms
64,984 KB
testcase_17 AC 810 ms
65,364 KB
testcase_18 AC 996 ms
73,596 KB
testcase_19 AC 993 ms
73,348 KB
testcase_20 AC 1,010 ms
73,272 KB
testcase_21 AC 1,085 ms
74,848 KB
testcase_22 AC 167 ms
42,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		long t = System.currentTimeMillis();
		new Main().run();
		System.err.println(System.currentTimeMillis() - t);
	}
	
	void run() {
		Scanner sc = new Scanner(System.in);
		int N=sc.nextInt();
		int M=sc.nextInt();
		int[] pay=new int[N];
		String[] l=new String[M];
		int p=0,dir=1;
		for(int i=0;i<M;++i)l[i]=sc.next();
		for(int i=0;i<M;++i) {
			if(l[i].equals("number")) {
				pay[p]++;
				if(i!=M-1)p=(p+dir+N)%N;
			}else if(l[i].equals("skip")) {
				pay[p]++;
				if(i!=M-1)p=(p+2*dir+N)%N;
			}else if(l[i].equals("reverse")) {
				pay[p]++;
				dir*=-1;
				if(i!=M-1)p=(p+dir+N)%N;
			}else if(l[i].equals("drawtwo")) {
				int j=i;
				while(j+1<l.length&&l[i].equals(l[j+1])) {
					++j;
				}
				for(int k=i;k<=j;++k) {
					pay[p]++;
					p=(p+dir+N)%N;
				}
				pay[p]-=(j-i+1)*2;
				i=j;
				if(i!=M-1)p=(p+dir+N)%N;
				else p=(p-dir+N)%N;
			}else if(l[i].equals("drawfour")) {
				int j=i;
				while(j+1<l.length&&l[i].equals(l[j+1])) {
					++j;
				}
				for(int k=i;k<=j;++k) {
					pay[p]++;
					p=(p+dir+N)%N;
				}
				pay[p]-=(j-i+1)*4;
				i=j;
				if(i!=M-1)p=(p+dir+N)%N;			
				else p=(p-dir+N)%N;
			}
		}
		System.out.println((p+1)+" "+pay[p]);
	}


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0