結果

問題 No.169 何分かかるの!?
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-01 02:32:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 509 bytes
コンパイル時間 3,323 ms
コンパイル使用メモリ 73,280 KB
実行使用メモリ 37,000 KB
最終ジャッジ日時 2024-11-15 20:57:47
合計ジャッジ時間 5,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,892 KB
testcase_01 AC 51 ms
36,744 KB
testcase_02 AC 51 ms
36,756 KB
testcase_03 AC 51 ms
36,748 KB
testcase_04 AC 51 ms
36,980 KB
testcase_05 AC 53 ms
36,796 KB
testcase_06 AC 52 ms
36,896 KB
testcase_07 AC 52 ms
36,744 KB
testcase_08 AC 51 ms
36,912 KB
testcase_09 AC 51 ms
36,808 KB
testcase_10 AC 51 ms
36,944 KB
testcase_11 AC 51 ms
36,760 KB
testcase_12 AC 51 ms
36,900 KB
testcase_13 AC 52 ms
36,864 KB
testcase_14 AC 52 ms
37,000 KB
testcase_15 AC 50 ms
36,752 KB
testcase_16 AC 51 ms
36,872 KB
testcase_17 AC 51 ms
36,680 KB
testcase_18 AC 51 ms
36,540 KB
testcase_19 AC 50 ms
36,912 KB
testcase_20 AC 52 ms
36,664 KB
testcase_21 AC 52 ms
36,752 KB
testcase_22 AC 51 ms
36,728 KB
testcase_23 AC 52 ms
36,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No169 {

	public static void main(String[] args) {
		try{
			BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
			int K = Integer.parseInt(br.readLine());
			int S = Integer.parseInt(br.readLine());
			System.out.println((int)Math.floor(S / (double)(100-K) * 100));
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
}
0