結果

問題 No.169 何分かかるの!?
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:12:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 73,704 KB
実行使用メモリ 53,984 KB
最終ジャッジ日時 2024-04-27 18:12:07
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,616 KB
testcase_01 AC 100 ms
52,492 KB
testcase_02 AC 99 ms
52,764 KB
testcase_03 AC 111 ms
53,640 KB
testcase_04 AC 102 ms
53,048 KB
testcase_05 AC 108 ms
53,604 KB
testcase_06 AC 105 ms
52,888 KB
testcase_07 AC 107 ms
53,912 KB
testcase_08 AC 101 ms
52,612 KB
testcase_09 AC 101 ms
52,780 KB
testcase_10 AC 115 ms
53,908 KB
testcase_11 AC 103 ms
52,644 KB
testcase_12 AC 114 ms
53,984 KB
testcase_13 AC 100 ms
52,456 KB
testcase_14 AC 98 ms
52,944 KB
testcase_15 AC 93 ms
52,520 KB
testcase_16 AC 110 ms
53,484 KB
testcase_17 AC 102 ms
52,696 KB
testcase_18 AC 102 ms
52,496 KB
testcase_19 AC 100 ms
52,752 KB
testcase_20 AC 99 ms
53,160 KB
testcase_21 AC 105 ms
53,712 KB
testcase_22 AC 102 ms
52,676 KB
testcase_23 AC 104 ms
52,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int k = sc.nextInt(), s = sc.nextInt();
		System.out.println(s*100/(100-k));
	}
}
0