結果

問題 No.56 消費税
ユーザー takutakutakutaku
提出日時 2020-09-16 16:41:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 277 bytes
コンパイル時間 1,647 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-06-22 03:21:20
合計ジャッジ時間 5,469 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
54,276 KB
testcase_01 AC 107 ms
54,112 KB
testcase_02 AC 101 ms
53,060 KB
testcase_03 AC 120 ms
54,080 KB
testcase_04 AC 120 ms
54,024 KB
testcase_05 AC 110 ms
53,992 KB
testcase_06 AC 110 ms
53,976 KB
testcase_07 AC 99 ms
52,984 KB
testcase_08 AC 100 ms
52,812 KB
testcase_09 AC 99 ms
54,112 KB
testcase_10 AC 100 ms
52,916 KB
testcase_11 AC 101 ms
52,724 KB
testcase_12 AC 100 ms
52,744 KB
testcase_13 AC 99 ms
53,228 KB
testcase_14 AC 98 ms
53,048 KB
testcase_15 AC 107 ms
54,132 KB
testcase_16 AC 110 ms
54,264 KB
testcase_17 AC 101 ms
52,828 KB
testcase_18 AC 97 ms
52,692 KB
testcase_19 AC 114 ms
54,376 KB
testcase_20 AC 100 ms
52,896 KB
testcase_21 AC 111 ms
53,896 KB
testcase_22 AC 112 ms
54,400 KB
testcase_23 AC 110 ms
54,228 KB
testcase_24 AC 112 ms
54,304 KB
testcase_25 AC 110 ms
54,040 KB
testcase_26 AC 117 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    Scanner sc = new Scanner(System.in);
	    int s = sc.nextInt();
	    int f = sc.nextInt();
	    
	    int result = s + s * f / 100;
	    
	    System.out.println(result);
	    
	}
}

0