結果

問題 No.293 4>7の世界
ユーザー flippergoflippergo
提出日時 2024-12-19 10:46:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 53,876 KB
最終ジャッジ日時 2024-12-19 10:46:42
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,024 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,116 KB
testcase_03 AC 43 ms
53,068 KB
testcase_04 AC 40 ms
52,144 KB
testcase_05 AC 40 ms
52,856 KB
testcase_06 AC 41 ms
53,828 KB
testcase_07 AC 72 ms
52,580 KB
testcase_08 AC 40 ms
53,424 KB
testcase_09 AC 41 ms
53,288 KB
testcase_10 AC 40 ms
53,448 KB
testcase_11 AC 42 ms
52,836 KB
testcase_12 AC 43 ms
51,908 KB
testcase_13 AC 44 ms
52,920 KB
testcase_14 AC 41 ms
52,072 KB
testcase_15 AC 41 ms
53,876 KB
testcase_16 AC 43 ms
53,608 KB
testcase_17 AC 41 ms
52,936 KB
testcase_18 AC 41 ms
53,296 KB
testcase_19 AC 41 ms
51,960 KB
testcase_20 AC 41 ms
51,956 KB
testcase_21 AC 42 ms
52,212 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 41 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = input().split()
ka = len(A)
kb = len(B)
if ka>kb:
    print(A)
elif kb>ka:
    print(B)
else:
    for i in range(ka):
        a = int(A[i])
        b = int(B[i])
        if a==b:continue
        if a==4 and b==7:
            print(A)
            break
        elif a==7 and b==4:
            print(B)
            break
        elif a>b:
            print(A)
            break
        else:
            print(B)
            break
0