結果
問題 | No.769 UNOシミュレータ |
ユーザー | aaaaaaiu |
提出日時 | 2019-08-01 11:59:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 886 bytes |
コンパイル時間 | 2,123 ms |
コンパイル使用メモリ | 200,552 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-22 09:24:44 |
合計ジャッジ時間 | 5,270 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int n,m; cin>>n>>m; int cnt[n] {}; int turn = 0; int dir = 1; bool draw = false; for (int i = 0; i < m; i++) { string s; cin >> s; if (draw) { if (s == "drawtwo" || s == "drawfour") { cnt[turn]++; turn = (turn + dir + m) % m; continue; } else { turn = (turn + dir + m) % m; draw = false; } } cnt[turn]++; if (s == "drawtwo" || s == "drawfour") draw = true; else if (s == "reverse") dir = -dir; else if (s == "skip") turn = (turn + dir + m) % m; turn = (turn + dir + m) % m; } int winner = (turn - dir + m) % m; cout << winner + 1 << ' ' << cnt[winner] << endl; return 0; }