結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
![]() |
提出日時 | 2016-12-18 13:33:58 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-14 08:16:21 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
a, b = input(), input() ans = 'NG' if a.isnumeric() and b.isnumeric(): if len(a) == len(list(str(int(a)))) and len(b) == len(list(str(int(b)))): if 0<=int(a)<=12345 and 0<=int(b)<=12345: ans = 'OK' print(ans)