結果

問題 No.56 消費税
ユーザー ダンネック
提出日時 2020-05-23 01:19:50
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 74,348 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-10-06 03:48:53
合計ジャッジ時間 6,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class tax{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
		int i = sc.nextInt();
		int j = sc.nextInt();
        int total = i * (j / 100);
		System.out.println(total);
        sc.close();
    }
}
0