結果
問題 | No.2863 Base 10 Subsets 1 |
ユーザー |
![]() |
提出日時 | 2024-09-03 01:52:49 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 176 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 53,684 KB |
最終ジャッジ日時 | 2024-09-03 01:52:52 |
合計ジャッジ時間 | 2,070 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
A,B = map(str,input().split())ans = 'No'if len(A) < len(B):print(ans)exit()ans = 'Yes'for i in range(len(B)):if int(A[~i]) < int(B[~i]):ans = 'No'print(ans)