結果

問題 No.169 何分かかるの!?
ユーザー Maeda
提出日時 2025-08-25 15:19:34
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 46,680 KB
最終ジャッジ日時 2025-08-25 15:19:41
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 2 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
        int k = scan.nextInt();
        int s = scan.nextInt();
		int now = 100 - k;
		int parsent = s / now;
		System.out.println(parsent * 100);
    }
}
0