結果

問題 No.293 4>7の世界
ユーザー AEnAEn
提出日時 2022-05-15 11:40:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 53,380 KB
最終ジャッジ日時 2024-07-26 18:50:07
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,004 KB
testcase_01 AC 36 ms
52,400 KB
testcase_02 AC 36 ms
53,380 KB
testcase_03 AC 36 ms
52,796 KB
testcase_04 AC 39 ms
52,616 KB
testcase_05 AC 38 ms
51,944 KB
testcase_06 AC 39 ms
52,952 KB
testcase_07 AC 39 ms
52,388 KB
testcase_08 AC 39 ms
53,224 KB
testcase_09 AC 39 ms
53,296 KB
testcase_10 AC 41 ms
52,152 KB
testcase_11 AC 39 ms
51,828 KB
testcase_12 AC 40 ms
52,560 KB
testcase_13 AC 39 ms
52,972 KB
testcase_14 AC 39 ms
53,080 KB
testcase_15 AC 39 ms
52,484 KB
testcase_16 AC 37 ms
51,752 KB
testcase_17 AC 38 ms
52,280 KB
testcase_18 AC 39 ms
52,980 KB
testcase_19 AC 37 ms
53,376 KB
testcase_20 AC 39 ms
52,028 KB
testcase_21 AC 35 ms
53,172 KB
testcase_22 AC 35 ms
51,760 KB
testcase_23 AC 35 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(str, input().split())
if len(a) > len(b):
    print(a)
elif len(a) < len(b):
    print(b)
else:
    for i in range(len(a)):
        if a[i] == '4' and b[i] == '7':
            print(a)
            break
        elif a[i] == '7' and b[i] == '4':
            print(b)
            break
        elif int(a[i]) > int(b[i]):
            print(a)
            break
        elif int(a[i])<int(b[i]):
            print(b)
            break
        
0