結果

問題 No.2863 Base 10 Subsets 1
ユーザー 寝癖寝癖
提出日時 2024-08-27 15:20:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,024 KB
最終ジャッジ日時 2024-08-27 15:20:40
合計ジャッジ時間 1,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,180 KB
testcase_01 WA -
testcase_02 AC 31 ms
52,272 KB
testcase_03 AC 32 ms
52,336 KB
testcase_04 WA -
testcase_05 AC 32 ms
53,632 KB
testcase_06 WA -
testcase_07 AC 33 ms
52,168 KB
testcase_08 WA -
testcase_09 AC 32 ms
51,680 KB
testcase_10 WA -
testcase_11 AC 32 ms
53,208 KB
testcase_12 WA -
testcase_13 AC 31 ms
51,828 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

SA, SB = input().split()
SA, SB = "0"*(10-len(SA)), "0"*(10-len(SB))

if all(int(a) >= int(b) for a, b in zip(SA, SB)):
    print('Yes')
else:
    print('No')
0