結果

問題 No.56 消費税
ユーザー core123core123
提出日時 2019-04-16 16:01:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 696 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 76,164 KB
実行使用メモリ 56,352 KB
最終ジャッジ日時 2024-09-22 08:18:32
合計ジャッジ時間 6,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
56,352 KB
testcase_01 AC 128 ms
54,208 KB
testcase_02 AC 114 ms
52,860 KB
testcase_03 AC 127 ms
53,800 KB
testcase_04 AC 128 ms
54,032 KB
testcase_05 AC 127 ms
54,276 KB
testcase_06 AC 127 ms
53,896 KB
testcase_07 AC 126 ms
54,000 KB
testcase_08 AC 128 ms
53,932 KB
testcase_09 AC 126 ms
54,036 KB
testcase_10 AC 114 ms
53,012 KB
testcase_11 AC 127 ms
54,108 KB
testcase_12 AC 127 ms
54,116 KB
testcase_13 AC 129 ms
54,472 KB
testcase_14 AC 116 ms
53,016 KB
testcase_15 AC 129 ms
54,236 KB
testcase_16 AC 129 ms
54,160 KB
testcase_17 AC 127 ms
53,964 KB
testcase_18 AC 129 ms
54,188 KB
testcase_19 AC 128 ms
54,216 KB
testcase_20 AC 127 ms
53,836 KB
testcase_21 AC 127 ms
54,004 KB
testcase_22 AC 133 ms
53,944 KB
testcase_23 AC 127 ms
53,972 KB
testcase_24 AC 127 ms
54,156 KB
testcase_25 AC 114 ms
52,996 KB
testcase_26 AC 128 ms
54,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		long d=sc.nextInt();
		int p=sc.nextInt();
		put(d*(100+p)/100);
	}
	
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0