結果

問題 No.2863 Base 10 Subsets 1
ユーザー koukikawagoekoukikawagoe
提出日時 2024-08-30 21:42:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 211 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 65,040 KB
最終ジャッジ日時 2024-08-30 21:42:57
合計ジャッジ時間 1,964 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,756 KB
testcase_01 AC 37 ms
53,496 KB
testcase_02 AC 37 ms
52,616 KB
testcase_03 AC 37 ms
53,688 KB
testcase_04 AC 37 ms
53,004 KB
testcase_05 AC 38 ms
53,096 KB
testcase_06 AC 36 ms
52,756 KB
testcase_07 AC 35 ms
52,696 KB
testcase_08 AC 38 ms
52,620 KB
testcase_09 AC 36 ms
52,132 KB
testcase_10 AC 36 ms
52,304 KB
testcase_11 AC 37 ms
53,132 KB
testcase_12 AC 35 ms
52,684 KB
testcase_13 AC 36 ms
53,184 KB
testcase_14 AC 36 ms
53,420 KB
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, input().split())

l = list(str(A))
lb = list(str(B))

a = 0
for j in range(1, len(lb)+1):
    if l[-j] < lb[-j]:
        print("No")
        break
    a+=1
    if a ==len(lb):
        print("Yes")
0