結果
問題 | No.2716 Falcon Method |
ユーザー | tobbie |
提出日時 | 2024-04-18 20:49:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 1,503 ms |
コンパイル使用メモリ | 167,332 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-10-10 14:15:46 |
合計ジャッジ時間 | 7,197 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 9 ms
5,248 KB |
testcase_07 | AC | 10 ms
5,248 KB |
testcase_08 | AC | 10 ms
5,248 KB |
testcase_09 | AC | 10 ms
5,248 KB |
testcase_10 | AC | 9 ms
5,248 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)n; i++) #define rep2(i, j, n) for (int i = j; i < (int)n; i++) int main() { int N, Q; cin >> N >> Q; string S; cin >> S; rep(j, Q) { int H, W, P; cin >> H >> W >> P; int x = 0, y = 0; int i = P; while (1) { if (x == H && y == W) { cout << i << endl; break; } else if (x == H) { y += 1; } else if (y == W) { x += 1; } else if (S[i] == 'D') { x += 1; i = (i + 1) % N; } else if (S[i] == 'R') { y += 1; i = (i + 1) % N; } } } return 0; }