結果
問題 | No.56 消費税 |
ユーザー | spacia |
提出日時 | 2015-12-15 22:41:22 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 51 ms / 5,000 ms |
コード長 | 369 bytes |
コンパイル時間 | 2,105 ms |
コンパイル使用メモリ | 73,148 KB |
実行使用メモリ | 37,068 KB |
最終ジャッジ日時 | 2024-07-18 03:01:36 |
合計ジャッジ時間 | 3,878 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
import java.io.*; import java.util.*; class Main56 { public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] line = br.readLine().split(" "); int D = Integer.parseInt(line[0]); int P = Integer.parseInt(line[1]); System.out.println(D * (P + 100) / 100); } }