結果

問題 No.56 消費税
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 11:19:36
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 205 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-07-18 01:50:19
合計ジャッジ時間 7,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,320 KB
testcase_01 AC 134 ms
41,200 KB
testcase_02 AC 132 ms
40,952 KB
testcase_03 AC 136 ms
41,268 KB
testcase_04 AC 131 ms
40,940 KB
testcase_05 AC 133 ms
41,644 KB
testcase_06 AC 118 ms
40,000 KB
testcase_07 AC 134 ms
41,056 KB
testcase_08 AC 138 ms
40,948 KB
testcase_09 AC 133 ms
40,972 KB
testcase_10 WA -
testcase_11 AC 136 ms
41,416 KB
testcase_12 AC 135 ms
41,012 KB
testcase_13 AC 132 ms
41,216 KB
testcase_14 AC 132 ms
40,796 KB
testcase_15 AC 133 ms
40,860 KB
testcase_16 AC 120 ms
40,332 KB
testcase_17 AC 135 ms
41,124 KB
testcase_18 AC 134 ms
41,020 KB
testcase_19 AC 132 ms
41,100 KB
testcase_20 AC 132 ms
41,136 KB
testcase_21 AC 133 ms
41,100 KB
testcase_22 AC 133 ms
41,052 KB
testcase_23 AC 134 ms
41,176 KB
testcase_24 AC 132 ms
41,024 KB
testcase_25 AC 119 ms
39,996 KB
testcase_26 AC 134 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		int P=s.nextInt(),Q=s.nextInt();
		System.out.println((int)(P*(Q/100D))+P);
	}
}
0