結果
問題 | No.293 4>7の世界 |
ユーザー | ty70 |
提出日時 | 2015-12-14 16:55:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 852 bytes |
コンパイル時間 | 863 ms |
コンパイル使用メモリ | 56,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 16:52:34 |
合計ジャッジ時間 | 1,225 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 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 |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #define rep(i,n) for(int i=0;i<(n);i++) #define ALL(A) A.begin(), A.end() using namespace std; typedef long long ll; bool ismatch(char c){ return (c == '4' || c == '7'); } string cmp(string s, string t){ if (s.length() != t.length()){ if (s.length() > t.length()) return s; else return t; }else{ int n = s.length(); rep (i, n){ if (s[i] == t[i]) continue; if (ismatch(s[i]) && ismatch(t[i])){ if(s[i] == '4' && t[i] == '7'){ return s; }else{ // if (s[i] == '7' && t[i] == '4') return t; } // end if }else{ if (s[i] > t[i]) return s; else return t; } // end if } // end rep return s; } // end if return ""; } int main() { ios_base::sync_with_stdio(0); string a, b; cin >> a >> b; string res = cmp(a,b); cout << res << endl; return 0; }