結果

問題 No.1915 Addition
ユーザー siganaisiganai
提出日時 2022-04-29 23:17:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 86,760 KB
実行使用メモリ 78,868 KB
最終ジャッジ日時 2023-09-11 14:51:11
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
78,704 KB
testcase_01 AC 134 ms
78,588 KB
testcase_02 AC 131 ms
78,664 KB
testcase_03 AC 131 ms
78,868 KB
testcase_04 AC 134 ms
78,684 KB
testcase_05 AC 131 ms
78,608 KB
testcase_06 AC 128 ms
78,672 KB
testcase_07 AC 128 ms
78,564 KB
testcase_08 AC 134 ms
78,640 KB
testcase_09 AC 127 ms
78,404 KB
testcase_10 AC 126 ms
78,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline

t = int(input())
for _ in range(t):
    n = int(input())
    print(n * 10 ** len(str(n)))
0