結果

問題 No.56 消費税
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-21 23:32:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-07-18 03:19:27
合計ジャッジ時間 5,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
    	int D = sc.nextInt();
    	double P = sc.nextInt();
    	
    	System.out.println((int)Math.floor(D * (100 + P) / 100));
	}
}
0