結果

問題 No.1915 Addition
ユーザー Ryota_PyRyota_Py
提出日時 2022-05-06 15:24:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 1,251 ms
コンパイル使用メモリ 86,992 KB
実行使用メモリ 71,956 KB
最終ジャッジ日時 2023-09-19 04:46:49
合計ジャッジ時間 4,238 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
71,876 KB
testcase_01 AC 99 ms
71,576 KB
testcase_02 AC 98 ms
71,400 KB
testcase_03 AC 98 ms
71,524 KB
testcase_04 AC 98 ms
71,956 KB
testcase_05 AC 100 ms
71,656 KB
testcase_06 AC 96 ms
71,392 KB
testcase_07 AC 98 ms
71,708 KB
testcase_08 AC 98 ms
71,916 KB
testcase_09 AC 99 ms
71,572 KB
testcase_10 AC 99 ms
71,564 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