結果

問題 No.169 何分かかるの!?
ユーザー YOSHIYOSHI
提出日時 2021-03-03 21:13:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 398 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 50,416 KB
最終ジャッジ日時 2024-04-14 12:55:28
合計ジャッジ時間 5,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,196 KB
testcase_01 AC 53 ms
50,340 KB
testcase_02 AC 53 ms
50,392 KB
testcase_03 AC 54 ms
50,328 KB
testcase_04 AC 55 ms
50,284 KB
testcase_05 AC 52 ms
50,360 KB
testcase_06 AC 53 ms
50,148 KB
testcase_07 AC 53 ms
50,252 KB
testcase_08 AC 54 ms
50,280 KB
testcase_09 AC 53 ms
50,260 KB
testcase_10 AC 52 ms
50,228 KB
testcase_11 AC 52 ms
50,244 KB
testcase_12 AC 52 ms
50,288 KB
testcase_13 AC 55 ms
50,240 KB
testcase_14 AC 53 ms
50,340 KB
testcase_15 AC 53 ms
50,256 KB
testcase_16 AC 53 ms
50,008 KB
testcase_17 AC 53 ms
50,208 KB
testcase_18 AC 52 ms
50,416 KB
testcase_19 AC 52 ms
50,324 KB
testcase_20 AC 52 ms
50,228 KB
testcase_21 AC 53 ms
49,996 KB
testcase_22 AC 54 ms
50,332 KB
testcase_23 AC 53 ms
50,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000169_Main {

	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int k = Integer.parseInt(br.readLine());
		int s = Integer.parseInt(br.readLine());
		System.out.println((100 * s) / (100 - k));
	}
}
0