結果
問題 | No.3032 Unavailability of Inequality Signs |
ユーザー | kei |
提出日時 | 2018-04-01 22:35:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,463 bytes |
コンパイル時間 | 1,559 ms |
コンパイル使用メモリ | 168,488 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 05:58:13 |
合計ジャッジ時間 | 2,180 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; void solve(){ int N; scanf("%d",&N); for(int i = 0; i != N;i++){ int a,b; scanf("%d%d",&a,&b); if(a==b){ putchar('='); putchar('\n'); continue; } string sa = to_string(a), sb = to_string(b); int digit = 10; while(sa.length()!=digit){ sa.insert(sa.begin(), '0'); } while(sb.length()!=digit){ sb.insert(sb.begin(), '0'); } for(int j = 0; j !=digit;j++){ if(sa[j] == '0' && sb[j] == '0'){ continue; } if(sa[j] == sb[j]) continue; if(sa[j] != '0' && sb[j] == '0'){ putchar(62); putchar('\n'); }else if(sa[j] == '0' && sb[j] != '0'){ putchar(60); putchar('\n'); }else if(sa[j] !='0' && sb[j] != '0'){ int ta = sa[j] - '0',tb = sb[j] - '0'; int tta = ta; while((tta != tb) && (tta != digit)){ tta++; } if(tta == digit){ putchar(62); putchar('\n'); }else{ putchar(60); putchar('\n'); } } break; } } } int main(void) { cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; }