結果

問題 No.169 何分かかるの!?
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-09 17:43:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2024-04-16 18:21:02
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,512 KB
testcase_01 AC 142 ms
41,964 KB
testcase_02 AC 145 ms
42,016 KB
testcase_03 AC 144 ms
41,632 KB
testcase_04 AC 144 ms
41,696 KB
testcase_05 AC 146 ms
41,536 KB
testcase_06 AC 144 ms
41,664 KB
testcase_07 AC 144 ms
41,808 KB
testcase_08 AC 144 ms
41,884 KB
testcase_09 AC 145 ms
41,884 KB
testcase_10 AC 145 ms
41,800 KB
testcase_11 AC 148 ms
41,964 KB
testcase_12 AC 147 ms
41,656 KB
testcase_13 AC 146 ms
42,020 KB
testcase_14 AC 147 ms
41,736 KB
testcase_15 AC 145 ms
41,408 KB
testcase_16 AC 147 ms
42,104 KB
testcase_17 AC 148 ms
41,660 KB
testcase_18 AC 151 ms
41,544 KB
testcase_19 AC 148 ms
41,552 KB
testcase_20 AC 146 ms
41,672 KB
testcase_21 AC 147 ms
41,580 KB
testcase_22 AC 147 ms
41,280 KB
testcase_23 AC 145 ms
41,836 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