結果

問題 No.169 何分かかるの!?
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:12:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 3,098 ms
コンパイル使用メモリ 71,332 KB
実行使用メモリ 57,640 KB
最終ジャッジ日時 2023-08-10 00:07:08
合計ジャッジ時間 6,539 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
55,720 KB
testcase_01 AC 107 ms
56,096 KB
testcase_02 AC 104 ms
55,852 KB
testcase_03 AC 109 ms
56,068 KB
testcase_04 AC 108 ms
55,704 KB
testcase_05 AC 110 ms
56,020 KB
testcase_06 AC 111 ms
56,312 KB
testcase_07 AC 110 ms
55,856 KB
testcase_08 AC 107 ms
56,140 KB
testcase_09 AC 109 ms
55,736 KB
testcase_10 AC 109 ms
55,892 KB
testcase_11 AC 105 ms
56,300 KB
testcase_12 AC 113 ms
55,716 KB
testcase_13 AC 117 ms
56,052 KB
testcase_14 AC 109 ms
55,576 KB
testcase_15 AC 108 ms
56,048 KB
testcase_16 AC 111 ms
57,640 KB
testcase_17 AC 104 ms
55,840 KB
testcase_18 AC 106 ms
55,924 KB
testcase_19 AC 106 ms
55,840 KB
testcase_20 AC 117 ms
55,936 KB
testcase_21 AC 117 ms
55,764 KB
testcase_22 AC 108 ms
56,116 KB
testcase_23 AC 108 ms
55,720 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