結果

問題 No.1798 Financial Quiz
ユーザー Maeda
提出日時 2025-09-05 16:08:15
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 46,748 KB
最終ジャッジ日時 2025-09-05 16:08:20
合計ジャッジ時間 4,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		int parsent = 100 - b ;
		System.out.println(a-(a*parsent));
    }
}
0