結果
問題 | No.293 4>7の世界 |
ユーザー | Reita Hagihara |
提出日時 | 2017-08-24 14:12:10 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 135 ms |
コンパイル使用メモリ | 28,672 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 14:18:06 |
合計ジャッジ時間 | 928 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 1 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <stdio.h> int main() { char str1[11], str2[11]; int i; int j, r; scanf("%s%s", &str1, &str2); for (j = 0; str1[j] != '\0'; j++) {} for (r = 0; str2[r] != '\0'; r++) {} if (j == r) { for (i = 0; str1[i] != '\0'; i++) { if (str1[i] == '4' && str2[i] == '7') { printf("%s", str1); break; } else if (str1[i] == '7' && str2[i] == '4') { printf("%s", str2); break; } } } else { if (j > r) { printf("%s", str1); } else { printf("%s", str2); } } if (j == r) { for (int y = 0; str1[y] != '\0'; y++) { if (str1[y] < str2[y]) { printf("%s", str2); } else { printf("%s", str1); } } } return 0; }