結果

問題 No.446 ゆきこーだーの雨と雪 (1)
コンテスト
ユーザー NyanmaruP78
提出日時 2017-02-19 00:31:12
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 266 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 594 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 20,604 KB
最終ジャッジ日時 2026-06-03 20:53:35
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2 RE * 2
other AC * 1 WA * 9 RE * 3
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#coding:utf-8

flag = 0
try:
    get = input()
    get1 = input()
    bool1 = get1[0:1]
    bool0 = get[0:1]
    get = int(get)
    get1 = int(get1)
except:
    flag = 1

if(flag != 1 or ((int(bool0)!=0) and int(bool1)!=0)):
    print(get+get1)
else:
    print("NG")
0