結果
問題 | No.293 4>7の世界 |
ユーザー | wahr69 |
提出日時 | 2015-11-05 13:45:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 547 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 57,444 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 12:40:13 |
合計ジャッジ時間 | 1,386 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 1 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | WA | - |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { string s1; string s2; cin >> s1 >> s2; if (s1.length() > s2.length()) { cout << s1 << endl; } else if (s1.length() < s2.length()) { cout << s2 << endl; } for (int i = 0; i < s1.length(); ++i) { if (s1[i] == s2[i]) { continue; } if (s1[i] > s2[i]) { if (s1[i] == '7' && s2[i] == '4') { cout << s2 << endl; } else { cout << s1 << endl; } } else { if (s1[i] == '4' && s2[i] == '7') { cout << s1 << endl; } else { cout << s2 << endl; } } } }