結果

問題 No.293 4>7の世界
ユーザー wahr69wahr69
提出日時 2015-11-05 13:45:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 52,572 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-10-11 13:56:54
合計ジャッジ時間 1,629 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
4,356 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
4,352 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 1 ms
4,352 KB
testcase_20 AC 2 ms
4,352 KB
testcase_21 WA -
testcase_22 AC 2 ms
4,352 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
  }
 }
}

}
0