結果

問題 No.2086 A+B問題
ユーザー Moss_LocalMoss_Local
提出日時 2022-09-30 21:44:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 47,608 KB
最終ジャッジ日時 2024-12-22 23:05:45
合計ジャッジ時間 16,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 601 ms
46,948 KB
testcase_01 AC 609 ms
47,608 KB
testcase_02 AC 611 ms
47,224 KB
testcase_03 AC 599 ms
47,228 KB
testcase_04 AC 611 ms
47,220 KB
testcase_05 AC 602 ms
46,964 KB
testcase_06 AC 605 ms
47,084 KB
testcase_07 AC 611 ms
47,348 KB
testcase_08 AC 604 ms
47,224 KB
testcase_09 AC 603 ms
47,220 KB
testcase_10 AC 599 ms
47,220 KB
testcase_11 AC 613 ms
47,348 KB
testcase_12 AC 614 ms
47,344 KB
testcase_13 AC 603 ms
47,348 KB
testcase_14 AC 601 ms
47,088 KB
testcase_15 AC 605 ms
47,084 KB
testcase_16 AC 597 ms
46,980 KB
testcase_17 AC 604 ms
47,084 KB
testcase_18 AC 613 ms
46,960 KB
testcase_19 AC 607 ms
46,964 KB
testcase_20 AC 605 ms
47,304 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