結果

問題 No.1439 Let's Compare!!!!
ユーザー karinohitokarinohito
提出日時 2021-03-29 19:17:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 104,412 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 00:33:08
合計ジャッジ時間 14,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 338 ms
6,940 KB
testcase_11 AC 1,342 ms
6,944 KB
testcase_12 AC 1,500 ms
6,944 KB
testcase_13 AC 350 ms
6,940 KB
testcase_14 AC 350 ms
6,944 KB
testcase_15 AC 1,887 ms
6,940 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,473 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
//#include<atcoder/all>
#include <numeric>
#include <cmath>
#include <limits>
#include <stdio.h>
#include <iomanip>
#include <string> 
#include <vector>
#include <algorithm>
#include <utility> 
#include <tuple> 
#include <cstdint> 
#include <cstdio> 
#include <map> 
#include <queue>
#include <set> 
#include <stack> 
#include <deque> 
#include <unordered_map> 
#include <unordered_set>
#include <bitset> 
#include <cctype>
//using namespace atcoder;
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<pair<ll, ll>>>;
vector<bool> seen;
bool C = true;
vector<ll> dist;
ll mod = 998244353;


int main() {

	ll N,Q;
	string S, T;
	cin >> N >> S >> T>>Q;
	rep(q, Q) {
		char C, Y;
		ll X;
		cin >> C >> X >> Y;
		if (C == 'S') {
			S[X - 1] = Y;
		}
		else {
			T[X - 1] = Y;
		}
		if (S < T)cout << "<" << endl;
		else if (S == T)cout << "=" << endl;
		else cout << ">" << endl;
	}
}
0