結果
| 問題 | No.56 消費税 |
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-03 21:05:37 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 34 ms / 5,000 ms |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 117 ms |
| コンパイル使用メモリ | 85,220 KB |
| 実行使用メモリ | 53,664 KB |
| 最終ジャッジ日時 | 2026-03-07 09:28:26 |
| 合計ジャッジ時間 | 1,790 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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