結果

問題 No.769 UNOシミュレータ
ユーザー 37zigen37zigen
提出日時 2020-03-22 04:08:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,044 ms / 2,000 ms
コード長 1,465 bytes
コンパイル時間 2,610 ms
コンパイル使用メモリ 79,560 KB
実行使用メモリ 75,692 KB
最終ジャッジ日時 2024-05-02 00:46:54
合計ジャッジ時間 15,298 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
42,380 KB
testcase_01 AC 166 ms
42,552 KB
testcase_02 AC 176 ms
42,552 KB
testcase_03 AC 172 ms
42,260 KB
testcase_04 AC 221 ms
44,412 KB
testcase_05 AC 219 ms
44,056 KB
testcase_06 AC 225 ms
44,116 KB
testcase_07 AC 230 ms
44,192 KB
testcase_08 AC 215 ms
44,236 KB
testcase_09 AC 278 ms
48,324 KB
testcase_10 AC 274 ms
48,008 KB
testcase_11 AC 264 ms
48,128 KB
testcase_12 AC 624 ms
53,272 KB
testcase_13 AC 608 ms
52,960 KB
testcase_14 AC 604 ms
53,332 KB
testcase_15 AC 884 ms
65,424 KB
testcase_16 AC 889 ms
64,872 KB
testcase_17 AC 843 ms
64,512 KB
testcase_18 AC 1,023 ms
75,132 KB
testcase_19 AC 1,013 ms
75,692 KB
testcase_20 AC 1,044 ms
73,796 KB
testcase_21 AC 1,014 ms
75,588 KB
testcase_22 AC 171 ms
42,460 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