結果
| 問題 | No.56 消費税 |
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-03 21:05:37 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 68 ms / 5,000 ms |
| + 828µs | |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 248 ms |
| コンパイル使用メモリ | 95,856 KB |
| 実行使用メモリ | 78,848 KB |
| 最終ジャッジ日時 | 2026-07-27 12:04:48 |
| 合計ジャッジ時間 | 3,619 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 23 |
ソースコード
import sys input = sys.stdin.buffer.readline D, p = map(int, input().split()) print( int(D * p / 100.0 + D ) )
splash9494