結果

問題 No.56 消費税
ユーザー SuunnSuunn
提出日時 2018-11-20 05:40:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 1,750 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-06 21:06:03
合計ジャッジ時間 5,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
52,460 KB
testcase_01 AC 105 ms
52,576 KB
testcase_02 AC 111 ms
53,596 KB
testcase_03 AC 102 ms
52,432 KB
testcase_04 AC 111 ms
53,960 KB
testcase_05 AC 113 ms
53,816 KB
testcase_06 AC 114 ms
54,064 KB
testcase_07 AC 113 ms
54,484 KB
testcase_08 AC 112 ms
54,092 KB
testcase_09 AC 104 ms
52,848 KB
testcase_10 AC 101 ms
52,700 KB
testcase_11 AC 115 ms
53,808 KB
testcase_12 AC 116 ms
53,772 KB
testcase_13 AC 118 ms
53,788 KB
testcase_14 AC 116 ms
53,924 KB
testcase_15 AC 114 ms
54,192 KB
testcase_16 AC 111 ms
53,748 KB
testcase_17 AC 111 ms
53,568 KB
testcase_18 AC 102 ms
52,628 KB
testcase_19 AC 114 ms
54,048 KB
testcase_20 AC 99 ms
52,328 KB
testcase_21 AC 108 ms
53,816 KB
testcase_22 AC 114 ms
53,940 KB
testcase_23 AC 102 ms
52,704 KB
testcase_24 AC 125 ms
53,848 KB
testcase_25 AC 119 ms
54,180 KB
testcase_26 AC 124 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int D= sc.nextInt();
		int P = sc.nextInt();
		System.out.println(D + D * P / 100);
	}
}
0