結果

問題 No.446 ゆきこーだーの雨と雪 (1)
コンテスト
ユーザー cologne
提出日時 2025-11-18 14:27:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 53,340 KB
最終ジャッジ日時 2025-11-18 14:27:11
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def main():
    r = open(0).read()

    try:
        a, b = map(int, r.split())
        assert 0 <= a <= 12345 and 0 <= b <= 12345
        assert r == f'{a}\n{b}\n'
        print('OK')
    except:
        print('NG')


if __name__ == '__main__':
    main()
0