結果

問題 No.2086 A+B問題
ユーザー Moss_LocalMoss_Local
提出日時 2022-09-30 21:44:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 10,620 KB
実行使用メモリ 32,252 KB
最終ジャッジ日時 2023-08-24 15:11:12
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
32,144 KB
testcase_01 AC 149 ms
32,144 KB
testcase_02 AC 150 ms
32,088 KB
testcase_03 AC 149 ms
32,068 KB
testcase_04 AC 152 ms
32,208 KB
testcase_05 AC 148 ms
32,052 KB
testcase_06 AC 148 ms
32,228 KB
testcase_07 AC 148 ms
32,108 KB
testcase_08 AC 148 ms
32,168 KB
testcase_09 AC 149 ms
32,252 KB
testcase_10 AC 148 ms
32,252 KB
testcase_11 AC 147 ms
32,136 KB
testcase_12 AC 147 ms
32,092 KB
testcase_13 AC 148 ms
32,160 KB
testcase_14 AC 149 ms
32,240 KB
testcase_15 AC 149 ms
32,220 KB
testcase_16 AC 148 ms
32,152 KB
testcase_17 AC 148 ms
32,140 KB
testcase_18 AC 149 ms
32,084 KB
testcase_19 AC 151 ms
32,136 KB
testcase_20 AC 151 ms
32,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from cgitb import reset
from collections import defaultdict
from functools import lru_cache
from sys import flags, stdin
import math
import re
import queue
from tokenize import String
import typing
import itertools
import bisect
import statistics
import numpy as np
# from numpy.core.function_base import _needs_add_docstring
# from numpy.core.numeric import outer
input = stdin.readline
MOD = 1000000007
INF = 122337203685477580


def solve():
    a = int(input().rstrip())
    b = int(input().rstrip())
    print(a+b)
    return


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