結果

問題 No.219 巨大数の概算
ユーザー 37kt_
提出日時 2016-01-12 21:11:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 185,984 KB
最終ジャッジ日時 2024-09-19 18:52:46
合計ジャッジ時間 5,829 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 1
other TLE * 1 -- * 50
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

for i in range(n):
	a, b = map(int, input().split())
	s = str(a ** b)
	a, b = s[0], s[1] if len(s) > 1 else 0
	print(a, b, len(s) - 1)
0