結果
問題 | No.769 UNOシミュレータ |
ユーザー | 37zigen |
提出日時 | 2020-03-22 03:56:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,465 bytes |
コンパイル時間 | 2,301 ms |
コンパイル使用メモリ | 79,588 KB |
実行使用メモリ | 75,760 KB |
最終ジャッジ日時 | 2024-11-22 09:34:40 |
合計ジャッジ時間 | 14,691 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 160 ms
42,296 KB |
testcase_01 | AC | 157 ms
42,316 KB |
testcase_02 | AC | 167 ms
42,236 KB |
testcase_03 | AC | 167 ms
42,532 KB |
testcase_04 | WA | - |
testcase_05 | AC | 212 ms
44,132 KB |
testcase_06 | AC | 208 ms
43,760 KB |
testcase_07 | AC | 213 ms
43,744 KB |
testcase_08 | AC | 212 ms
43,792 KB |
testcase_09 | WA | - |
testcase_10 | AC | 265 ms
47,848 KB |
testcase_11 | AC | 264 ms
48,164 KB |
testcase_12 | WA | - |
testcase_13 | AC | 602 ms
53,760 KB |
testcase_14 | AC | 638 ms
53,540 KB |
testcase_15 | WA | - |
testcase_16 | AC | 803 ms
66,012 KB |
testcase_17 | AC | 799 ms
65,184 KB |
testcase_18 | AC | 993 ms
75,760 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 852 ms
73,092 KB |
testcase_22 | AC | 158 ms
42,272 KB |
ソースコード
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)); } }