結果

問題 No.169 何分かかるの!?
ユーザー koukonkokoukonko
提出日時 2015-12-13 14:50:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 424 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 50,568 KB
最終ジャッジ日時 2024-09-15 11:41:09
合計ジャッジ時間 4,713 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,020 KB
testcase_01 AC 53 ms
50,124 KB
testcase_02 AC 53 ms
50,312 KB
testcase_03 AC 52 ms
50,216 KB
testcase_04 AC 53 ms
50,148 KB
testcase_05 AC 53 ms
50,168 KB
testcase_06 AC 54 ms
50,296 KB
testcase_07 AC 53 ms
50,188 KB
testcase_08 AC 54 ms
49,928 KB
testcase_09 AC 53 ms
50,208 KB
testcase_10 AC 52 ms
50,404 KB
testcase_11 AC 54 ms
49,980 KB
testcase_12 AC 54 ms
49,864 KB
testcase_13 AC 54 ms
50,272 KB
testcase_14 AC 54 ms
49,916 KB
testcase_15 AC 53 ms
49,892 KB
testcase_16 AC 55 ms
50,232 KB
testcase_17 AC 53 ms
50,228 KB
testcase_18 AC 52 ms
49,872 KB
testcase_19 AC 53 ms
50,216 KB
testcase_20 AC 53 ms
50,344 KB
testcase_21 AC 53 ms
50,188 KB
testcase_22 AC 53 ms
50,568 KB
testcase_23 AC 55 ms
50,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			int K = Integer.parseInt(read.readLine());
			int S = Integer.parseInt(read.readLine());

			System.out.println((long)(S / ((100.0 - K) / 100)));

		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0