結果

問題 No.169 何分かかるの!?
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 17:43:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-10-07 17:50:39
合計ジャッジ時間 5,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,124 KB
testcase_01 AC 133 ms
54,088 KB
testcase_02 AC 129 ms
54,092 KB
testcase_03 AC 123 ms
53,708 KB
testcase_04 AC 133 ms
54,288 KB
testcase_05 AC 129 ms
54,120 KB
testcase_06 AC 120 ms
53,988 KB
testcase_07 AC 124 ms
54,000 KB
testcase_08 AC 128 ms
53,700 KB
testcase_09 AC 129 ms
54,244 KB
testcase_10 AC 118 ms
53,532 KB
testcase_11 AC 133 ms
54,064 KB
testcase_12 AC 122 ms
53,684 KB
testcase_13 AC 127 ms
54,164 KB
testcase_14 AC 121 ms
53,944 KB
testcase_15 AC 125 ms
54,024 KB
testcase_16 AC 128 ms
54,396 KB
testcase_17 AC 120 ms
53,588 KB
testcase_18 AC 133 ms
54,276 KB
testcase_19 AC 133 ms
54,116 KB
testcase_20 AC 131 ms
54,344 KB
testcase_21 AC 135 ms
54,344 KB
testcase_22 AC 130 ms
54,044 KB
testcase_23 AC 117 ms
53,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double k = sc.nextDouble();
		double s = sc.nextDouble();
		double ans = (s*100)/(100-k);
		System.out.println((int)ans);
	}
}
0