結果
| 問題 | No.219 巨大数の概算 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-19 11:03:30 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 304 bytes |
| コンパイル時間 | 214 ms |
| コンパイル使用メモリ | 82,564 KB |
| 実行使用メモリ | 77,976 KB |
| 最終ジャッジ日時 | 2024-09-21 10:10:12 |
| 合計ジャッジ時間 | 10,958 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 46 WA * 5 |
ソースコード
n = int(input())
from math import log
from bisect import bisect_left
res = [-1] + [log(i/10,10) for i in range(1,101)]
#print(res)
for _ in range(n):
a,b = map(int,input().split())
c = b*log(a,10)
z = int(c)
idx = bisect_left(res, c-z) - 1
x = idx//10
y = idx%10
print(x,y,z)
convexineq