結果

問題 No.2863 Base 10 Subsets 1
ユーザー 寝癖寝癖
提出日時 2024-07-06 19:14:04
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 160 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 53,368 KB
最終ジャッジ日時 2024-08-27 10:19:04
合計ジャッジ時間 1,367 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,368 KB
testcase_01 AC 35 ms
52,504 KB
testcase_02 AC 35 ms
52,752 KB
testcase_03 AC 36 ms
51,888 KB
testcase_04 AC 34 ms
52,156 KB
testcase_05 AC 34 ms
53,004 KB
testcase_06 AC 35 ms
52,140 KB
testcase_07 AC 35 ms
52,992 KB
testcase_08 AC 34 ms
52,920 KB
testcase_09 AC 35 ms
53,312 KB
testcase_10 AC 36 ms
52,240 KB
testcase_11 AC 35 ms
53,352 KB
testcase_12 AC 35 ms
52,492 KB
testcase_13 AC 34 ms
52,960 KB
testcase_14 AC 34 ms
52,272 KB
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

SA, SB = input().split()
A = list(map(int, SA))[::-1]
B = list(map(int, SB))[::-1]

if all(a >= b for a, b in zip(A, B)):
    print('Yes')
else:
    print('No')
0