結果

問題 No.2863 Base 10 Subsets 1
ユーザー koukikawagoe
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 RE * 2
権限があれば一括ダウンロードができます

ソースコード

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