結果

問題 No.138 化石のバージョン
ユーザー kohei2019kohei2019
提出日時 2021-08-04 00:01:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 86,800 KB
実行使用メモリ 71,380 KB
最終ジャッジ日時 2023-10-14 21:11:51
合計ジャッジ時間 5,427 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,204 KB
testcase_01 AC 75 ms
71,336 KB
testcase_02 AC 76 ms
71,296 KB
testcase_03 AC 76 ms
70,948 KB
testcase_04 AC 75 ms
71,316 KB
testcase_05 AC 77 ms
71,312 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 78 ms
71,208 KB
testcase_17 AC 75 ms
71,028 KB
testcase_18 AC 76 ms
70,776 KB
testcase_19 AC 76 ms
71,160 KB
testcase_20 AC 77 ms
70,948 KB
testcase_21 AC 78 ms
71,336 KB
testcase_22 AC 78 ms
71,380 KB
testcase_23 AC 77 ms
70,996 KB
testcase_24 AC 76 ms
71,212 KB
testcase_25 AC 76 ms
71,024 KB
testcase_26 WA -
testcase_27 AC 76 ms
71,292 KB
testcase_28 AC 76 ms
71,180 KB
testcase_29 AC 76 ms
71,024 KB
testcase_30 AC 75 ms
71,032 KB
testcase_31 AC 76 ms
70,800 KB
testcase_32 AC 76 ms
71,148 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A0,B0,C0 = map(int,input().split('.'))
A,B,C = map(int,input().split('.'))

if A0 < A:
    print('NO')
    exit()
if B0 < B:
    print('NO')
    exit()
if C0 < C:
    print('NO')
    exit()
print('YES')
0