結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー mkawa2mkawa2
提出日時 2020-01-04 16:33:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,075 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,740 KB
最終ジャッジ日時 2024-05-02 08:17:55
合計ジャッジ時間 9,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
44,492 KB
testcase_01 AC 439 ms
44,488 KB
testcase_02 AC 474 ms
44,604 KB
testcase_03 AC 456 ms
44,740 KB
testcase_04 AC 448 ms
44,484 KB
testcase_05 AC 443 ms
44,624 KB
testcase_06 AC 449 ms
44,480 KB
testcase_07 AC 454 ms
44,480 KB
testcase_08 AC 463 ms
44,612 KB
testcase_09 AC 472 ms
44,736 KB
testcase_10 AC 445 ms
44,356 KB
testcase_11 AC 446 ms
44,612 KB
testcase_12 AC 456 ms
44,480 KB
testcase_13 AC 442 ms
44,364 KB
testcase_14 AC 454 ms
44,612 KB
testcase_15 AC 451 ms
44,492 KB
testcase_16 AC 451 ms
44,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
from bisect import *
# from math import *
from collections import *
from heapq import *
from random import *
from decimal import *
import numpy as np
import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

def ng(s):
    if not s.isdigit(): return True
    if len(s)>1 and s[0] == "0": return True
    if int(s) > 12345: return True
    return False

def main():
    for _ in range(2):
        s=input()
        if ng(s):
            print("NG")
            exit()
    print("OK")

main()
0