結果

問題 No.2863 Base 10 Subsets 1
ユーザー ああいいああいい
提出日時 2024-10-04 23:53:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-10-04 23:53:25
合計ジャッジ時間 1,740 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,580 KB
testcase_01 WA -
testcase_02 AC 35 ms
52,996 KB
testcase_03 AC 38 ms
52,000 KB
testcase_04 WA -
testcase_05 AC 36 ms
53,352 KB
testcase_06 AC 60 ms
53,152 KB
testcase_07 AC 33 ms
52,536 KB
testcase_08 AC 33 ms
52,644 KB
testcase_09 AC 37 ms
52,028 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,560 KB
testcase_12 AC 37 ms
52,560 KB
testcase_13 AC 36 ms
52,420 KB
testcase_14 WA -
testcase_15 AC 33 ms
53,092 KB
testcase_16 AC 37 ms
52,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int,input().split())

import sys

for _ in range(12):
	aa = a% 10
	bb = b % 10
	if b > a:
		print('No')
		exit()
	a //= 10
	b //= 10
print('Yes')
0