結果

問題 No.1915 Addition
ユーザー siganaisiganai
提出日時 2022-04-29 23:17:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-06-29 05:01:40
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

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