結果

問題 No.1439 Let's Compare!!!!
ユーザー mioupamioupa
提出日時 2021-03-29 02:47:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 672 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 167,880 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 23:04:21
合計ジャッジ時間 4,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iostream>
#include <string>
#include <stdio.h>
#include <math.h>
#define rep(i, n) for (int i = 0; i < n; i++)
#define ll long long
#define be(x) x.begin(), x.end()
using namespace std;

int main()
{
    int n,q;
    string s,t;
    cin >> n >> s >> t >> q;

    rep(i,q){
        string c;
        int x,y;
        cin >> c >> x >> y;

        if(c=="S"){
            s[x-1] = y;
        }
        else{
            t[x-1] = y;
        }
        ll san = stoll(s);
        ll tan = stoll(t);
   
        if(san>tan) cout <<">"<<endl;
        else if (san==tan) cout << "="<<endl;
        else cout<<"<"<<endl;
   
    }
    return 0;
}
0