結果
問題 | No.2461 一点張り |
ユーザー | timi |
提出日時 | 2023-09-08 21:39:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 251 bytes |
コンパイル時間 | 376 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 77,292 KB |
最終ジャッジ日時 | 2024-06-26 14:31:21 |
合計ジャッジ時間 | 1,289 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,600 KB |
testcase_01 | WA | - |
testcase_02 | AC | 74 ms
76,348 KB |
testcase_03 | AC | 89 ms
76,840 KB |
testcase_04 | WA | - |
testcase_05 | AC | 81 ms
76,816 KB |
testcase_06 | AC | 76 ms
76,516 KB |
testcase_07 | AC | 65 ms
70,236 KB |
ソースコード
N=int(input()) for _ in range(N): x,y=input().split() y=int(y) if x[-2]=='.': x=x+'00' elif x[-2]=='.': x=x+'0' x=int(x.replace('.','')) ans=0;c=1 for i in range(1,y): d=c*x*pow(10,-3) ans+=i*d c-=d print(ans+y*c)