結果
| 問題 | No.219 巨大数の概算 |
| コンテスト | |
| ユーザー |
tkzw_21
|
| 提出日時 | 2015-05-29 23:15:31 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 196 bytes |
| 記録 | |
| コンパイル時間 | 118 ms |
| コンパイル使用メモリ | 77,492 KB |
| 最終ジャッジ日時 | 2025-12-03 15:21:47 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | TLE * 1 -- * 50 |
ソースコード
n = int(raw_input()) for i in range(n): a,b = map(int ,raw_input().split()) res = 1 while b > 0: if b & 1: res = res * a a = a * a b >>= 1 s = str(res) print s[0] ,s[1], len(s)-1
tkzw_21