結果

問題 No.1915 Addition
ユーザー 👑 KazunKazun
提出日時 2022-04-29 21:28:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 52,568 KB
最終ジャッジ日時 2024-06-29 02:47:14
合計ジャッジ時間 1,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,856 KB
testcase_01 AC 35 ms
52,152 KB
testcase_02 AC 33 ms
51,772 KB
testcase_03 AC 34 ms
51,760 KB
testcase_04 AC 36 ms
52,024 KB
testcase_05 AC 36 ms
52,356 KB
testcase_06 AC 40 ms
52,568 KB
testcase_07 AC 33 ms
51,996 KB
testcase_08 AC 34 ms
52,196 KB
testcase_09 AC 33 ms
52,060 KB
testcase_10 AC 36 ms
52,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())

Ans=[0]*T

for t in range(T):
    N=int(input())
    if N%2:
        Ans[t]=2*N
    else:
        Ans[t]=N//2

print(*Ans,sep="\n")
0