結果

問題 No.169 何分かかるの!?
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-01 02:11:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 3,377 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 52,136 KB
最終ジャッジ日時 2024-11-15 20:57:41
合計ジャッジ時間 5,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 56 ms
50,312 KB
testcase_02 AC 56 ms
50,048 KB
testcase_03 WA -
testcase_04 AC 57 ms
50,188 KB
testcase_05 AC 59 ms
50,332 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 55 ms
50,244 KB
testcase_09 AC 55 ms
49,996 KB
testcase_10 AC 56 ms
50,380 KB
testcase_11 AC 56 ms
50,248 KB
testcase_12 AC 55 ms
50,412 KB
testcase_13 AC 56 ms
50,124 KB
testcase_14 AC 56 ms
50,224 KB
testcase_15 AC 56 ms
50,408 KB
testcase_16 AC 56 ms
50,108 KB
testcase_17 AC 57 ms
50,316 KB
testcase_18 WA -
testcase_19 AC 56 ms
50,316 KB
testcase_20 AC 56 ms
50,500 KB
testcase_21 AC 56 ms
50,684 KB
testcase_22 AC 56 ms
50,024 KB
testcase_23 AC 56 ms
50,472 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));
			double K = Double.parseDouble(br.readLine()) / 100;
			int S = Integer.parseInt(br.readLine());
			double ans = S / (1-K);
			System.out.println((int)ans);
		}catch(IOException e){
			e.getStackTrace();
		}catch(NumberFormatException e){
			e.getStackTrace();
		}
	}
}
0