結果

問題 No.2863 Base 10 Subsets 1
ユーザー okazeokaze
提出日時 2024-10-27 01:57:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 53,172 KB
最終ジャッジ日時 2024-10-27 01:58:01
合計ジャッジ時間 1,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,172 KB
testcase_01 AC 36 ms
51,632 KB
testcase_02 AC 36 ms
52,504 KB
testcase_03 AC 35 ms
52,452 KB
testcase_04 AC 37 ms
52,008 KB
testcase_05 AC 36 ms
52,208 KB
testcase_06 AC 36 ms
52,392 KB
testcase_07 AC 35 ms
52,828 KB
testcase_08 AC 36 ms
52,968 KB
testcase_09 AC 35 ms
53,008 KB
testcase_10 AC 36 ms
52,124 KB
testcase_11 AC 36 ms
52,404 KB
testcase_12 AC 36 ms
52,296 KB
testcase_13 AC 36 ms
52,880 KB
testcase_14 AC 36 ms
52,672 KB
testcase_15 AC 36 ms
51,964 KB
testcase_16 AC 36 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = input().split()
A_num = int(A)
B_num = int(B)

A = "0"*max(len(B)-len(A),0) + A
B = "0"*max(len(A)-len(B),0) + B

A = list(map(int,reversed(list(A))))
B = list(map(int,reversed(list(B))))

for a,b in zip(A,B):
    if not(a >= b):
        print("No")
        exit()


print("Yes")
0