結果
問題 |
No.219 巨大数の概算
|
ユーザー |
|
提出日時 | 2015-06-01 18:26:10 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 186 bytes |
コンパイル時間 | 69 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-06 13:15:14 |
合計ジャッジ時間 | 7,549 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | RE * 51 |
ソースコード
# -*- coding:utf-8 -*- import math if __name__ == "__main__": n = input() for i in xrange(n): a,b = map(int,raw_input().split()) m = str(math.pow(a,b)) print m[0],m[1],len(m)-1