結果
問題 |
No.138 化石のバージョン
|
ユーザー |
![]() |
提出日時 | 2017-12-05 22:26:37 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 222 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-28 17:52:24 |
合計ジャッジ時間 | 2,182 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 WA * 6 |
ソースコード
A,B,C=map(str,input().split('.')) a,b,c=map(str,input().split('.')) D=int(A)*10**len(A+B+C)+int(B)*10**len(B+C)+int(C)*10**len(C) d=int(a)*10**len(a+b+c)+int(b)*10**len(b+c)+int(c)*10**len(c) print(['YES','NO'][D<d])