結果
問題 | No.769 UNOシミュレータ |
ユーザー | tsunabit |
提出日時 | 2019-07-10 00:00:17 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,664 bytes |
コンパイル時間 | 4,023 ms |
コンパイル使用メモリ | 80,060 KB |
実行使用メモリ | 75,512 KB |
最終ジャッジ日時 | 2024-11-22 09:20:38 |
合計ジャッジ時間 | 15,378 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 157 ms
42,296 KB |
testcase_01 | AC | 167 ms
42,272 KB |
testcase_02 | AC | 170 ms
42,368 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 206 ms
44,028 KB |
testcase_06 | AC | 210 ms
44,292 KB |
testcase_07 | AC | 197 ms
43,952 KB |
testcase_08 | AC | 208 ms
44,324 KB |
testcase_09 | WA | - |
testcase_10 | AC | 255 ms
48,092 KB |
testcase_11 | AC | 257 ms
48,132 KB |
testcase_12 | WA | - |
testcase_13 | AC | 583 ms
53,700 KB |
testcase_14 | AC | 590 ms
53,424 KB |
testcase_15 | WA | - |
testcase_16 | AC | 762 ms
65,100 KB |
testcase_17 | WA | - |
testcase_18 | AC | 974 ms
75,024 KB |
testcase_19 | AC | 900 ms
73,384 KB |
testcase_20 | WA | - |
testcase_21 | AC | 962 ms
75,512 KB |
testcase_22 | AC | 150 ms
42,124 KB |
ソースコード
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; 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]); 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, n); }else if("drawtwo".equals(t[i])) { if(i < m - 2 && "drawtwo".equals(t[i + 1])) { c = c + (r * 1); c = count(c, n); }else { h[count(c + (r * 1), n)] -= 2; c = c + (r * 2); c = count(c, n); } }else if("drawfour".equals(t[i])) { if(i < m - 2 && "drawfour".equals(t[i + 1])) { c = c + (r * 1); c = count(c, n); }else { h[count(c + (r * 1), n)] -= 4; c = c + (r * 2); c = count(c, n); } }else if("skip".equals(t[i])) { c = c + (r * 2); c = count(c, n); }else if("reverse".equals(t[i])) { r = r * -1; c = c + (r * 1); c = count(c, 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; } }