結果

問題 No.56 消費税
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-21 23:32:01
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,080 KB
testcase_01 AC 110 ms
53,336 KB
testcase_02 AC 117 ms
53,872 KB
testcase_03 AC 116 ms
54,092 KB
testcase_04 AC 124 ms
53,848 KB
testcase_05 AC 125 ms
54,108 KB
testcase_06 AC 120 ms
53,920 KB
testcase_07 AC 121 ms
54,104 KB
testcase_08 AC 122 ms
54,144 KB
testcase_09 AC 122 ms
53,944 KB
testcase_10 AC 123 ms
53,992 KB
testcase_11 AC 108 ms
53,032 KB
testcase_12 AC 119 ms
53,880 KB
testcase_13 AC 108 ms
52,720 KB
testcase_14 AC 106 ms
53,024 KB
testcase_15 AC 115 ms
53,928 KB
testcase_16 AC 124 ms
54,220 KB
testcase_17 AC 103 ms
52,556 KB
testcase_18 AC 120 ms
54,168 KB
testcase_19 AC 121 ms
54,152 KB
testcase_20 AC 112 ms
53,016 KB
testcase_21 AC 106 ms
52,716 KB
testcase_22 AC 109 ms
52,916 KB
testcase_23 AC 109 ms
52,904 KB
testcase_24 AC 124 ms
54,084 KB
testcase_25 AC 126 ms
53,868 KB
testcase_26 AC 129 ms
53,876 KB
権限があれば一括ダウンロードができます

ソースコード

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