結果
| 問題 | No.219 巨大数の概算 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-02-18 07:32:34 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 103 ms / 1,500 ms |
| + 898µs | |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 81,472 KB |
| 実行使用メモリ | 85,632 KB |
| 最終ジャッジ日時 | 2026-07-18 03:09:24 |
| 合計ジャッジ時間 | 9,012 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 51 |
ソースコード
#coding: utf-8 #yuki_219 import math n=int(raw_input()) for i in xrange(n): s=map(int,raw_input().split()) a=s[0] b=s[1] x=b*math.log(a,10) xt=int(x) y=x-xt z=10**y X=int(z) Y=int(z*10)%10 print X,Y,xt