結果

問題 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  
実行時間 560 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,604 KB
最終ジャッジ日時 2024-06-02 05:20:34
合計ジャッジ時間 12,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
46,968 KB
testcase_01 AC 510 ms
47,084 KB
testcase_02 AC 554 ms
47,084 KB
testcase_03 AC 560 ms
47,344 KB
testcase_04 AC 527 ms
47,308 KB
testcase_05 AC 516 ms
47,216 KB
testcase_06 AC 524 ms
47,472 KB
testcase_07 AC 521 ms
47,216 KB
testcase_08 AC 522 ms
47,084 KB
testcase_09 AC 522 ms
47,344 KB
testcase_10 AC 524 ms
47,348 KB
testcase_11 AC 514 ms
47,220 KB
testcase_12 AC 518 ms
47,604 KB
testcase_13 AC 519 ms
47,344 KB
testcase_14 AC 519 ms
47,208 KB
testcase_15 AC 516 ms
47,352 KB
testcase_16 AC 525 ms
46,956 KB
testcase_17 AC 540 ms
47,084 KB
testcase_18 AC 524 ms
46,956 KB
testcase_19 AC 526 ms
47,348 KB
testcase_20 AC 520 ms
46,956 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