結果

問題 No.56 消費税
ユーザー ryosuke0825ryosuke0825
提出日時 2018-04-06 00:21:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 265 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-26 10:41:47
合計ジャッジ時間 7,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No56 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int p = sc.nextInt();
		int t = sc.nextInt();

		double re = p * (100 + t) / 100;
		System.out.println((int) Math.floor(re));

	}

}
0