結果

問題 No.1915 Addition
ユーザー Ryota_PyRyota_Py
提出日時 2022-05-06 15:24:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-05 17:17:11
合計ジャッジ時間 1,761 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 47 ms
54,272 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 50 ms
54,016 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 49 ms
54,016 KB
testcase_08 AC 47 ms
54,016 KB
testcase_09 AC 45 ms
54,144 KB
testcase_10 AC 46 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math,collections,itertools
from collections import deque
INF = 10**18
def I(): return int(input())
def MI(): return map(int,input().split())
def LI(): return list(map(int,input().split()))
def TI(): return tuple(map(int,input().split()))
def S(): return input()
def LS(): return list(input().split())
def TS(): return tuple(input().split())
def lcm(a, b): return a * b // math.gcd(a, b)
MOD1 = 10**9+7 #500000004
MOD2 = 998244353 #499122177
sys.setrecursionlimit(10**9)

t = I()
for i in range(t):
    print(I()*2)
0