結果

問題 No.1291 小手調べ
ユーザー ch1channnch1channn
提出日時 2022-12-12 14:16:59
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 71,568 KB
最終ジャッジ日時 2023-08-06 09:19:04
合計ジャッジ時間 1,334 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,360 KB
testcase_01 AC 72 ms
71,420 KB
testcase_02 AC 73 ms
71,568 KB
testcase_03 AC 71 ms
71,552 KB
testcase_04 AC 71 ms
71,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n = int(input())
for i in range(n):
	b = int(input())
	if b == 1:
		print(10)
		continue
	print("9"+"0"*(b-1))
0