結果

問題 No.56 消費税
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-21 23:26:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 76,940 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-05-02 22:03:39
合計ジャッジ時間 5,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,004 KB
testcase_01 AC 116 ms
53,960 KB
testcase_02 AC 120 ms
54,004 KB
testcase_03 WA -
testcase_04 AC 100 ms
52,780 KB
testcase_05 AC 115 ms
53,968 KB
testcase_06 AC 102 ms
52,940 KB
testcase_07 AC 101 ms
53,024 KB
testcase_08 AC 113 ms
53,928 KB
testcase_09 AC 116 ms
53,924 KB
testcase_10 AC 113 ms
53,816 KB
testcase_11 AC 114 ms
54,060 KB
testcase_12 AC 114 ms
53,796 KB
testcase_13 AC 113 ms
54,084 KB
testcase_14 AC 103 ms
52,676 KB
testcase_15 AC 104 ms
52,632 KB
testcase_16 AC 101 ms
52,868 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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 * (1 + P / 100)));
	}
}
0