結果

問題 No.2863 Base 10 Subsets 1
ユーザー miho-4miho-4
提出日時 2024-08-30 22:51:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-08-30 22:51:15
合計ジャッジ時間 1,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,292 KB
testcase_01 AC 36 ms
52,072 KB
testcase_02 AC 36 ms
52,000 KB
testcase_03 AC 36 ms
52,744 KB
testcase_04 AC 36 ms
52,968 KB
testcase_05 AC 35 ms
51,980 KB
testcase_06 AC 36 ms
52,684 KB
testcase_07 AC 37 ms
52,428 KB
testcase_08 AC 37 ms
53,416 KB
testcase_09 AC 37 ms
52,620 KB
testcase_10 WA -
testcase_11 AC 36 ms
51,964 KB
testcase_12 AC 37 ms
53,140 KB
testcase_13 AC 36 ms
52,404 KB
testcase_14 AC 36 ms
53,432 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 37 ms
52,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
if a<b:exit(print("No"))

flag=1
for i in range(len(str(b))):
	if a%10<b%10:
		flag=0
print("Yes" if flag else "No")
0