結果

問題 No.2716 Falcon Method
ユーザー mint
提出日時 2024-04-06 11:44:36
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 192,168 KB
最終ジャッジ日時 2025-02-20 22:32:06
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 10 TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, q; cin >> n >> q;
    string s; cin >> s;
    for(int i = 0; i < q; i++){
        int h, w, p, x = 0, y = 0, c; cin >> h >> w >> p;
        c = p;
        for(int j = 0; j < (int)s.size(); j++){
            if(x == h && y == w) break;
            if(x == h && y != w) y++;
            else if(x != h && y == w) x++;
            else {
                if(s[j] == 'D'){
                    x++;
                    c++;
                    c %= n;
                }else if(s[j] == 'R'){
                    y++;
                    c++;
                    c %= n;
                }
            }
        }
        cout << c << '\n';
    }

    return 0;
}
0