結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー | mint6421 |
提出日時 | 2020-01-07 22:39:16 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 244 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-23 01:16:50 |
合計ジャッジ時間 | 1,511 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
flag = Truefor _ in range(2):x = input()if x.isdigit() == False:flag=Falseelif x[0] == '0' and len(x) > 1:flag=Falseelif int(x) > 12345:flag=Falseif flag:print("OK")else:print("NG")