結果

問題 No.169 何分かかるの!?
ユーザー kenkooookenkoooo
提出日時 2015-03-24 19:58:25
言語 Java19
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 275 bytes
コンパイル時間 3,152 ms
コンパイル使用メモリ 71,044 KB
実行使用メモリ 56,520 KB
最終ジャッジ日時 2023-09-11 09:58:25
合計ジャッジ時間 7,249 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,236 KB
testcase_01 AC 121 ms
55,684 KB
testcase_02 AC 120 ms
53,948 KB
testcase_03 AC 121 ms
56,448 KB
testcase_04 AC 121 ms
56,120 KB
testcase_05 AC 120 ms
56,040 KB
testcase_06 AC 119 ms
56,032 KB
testcase_07 AC 120 ms
55,688 KB
testcase_08 AC 121 ms
56,176 KB
testcase_09 AC 120 ms
56,016 KB
testcase_10 AC 120 ms
56,520 KB
testcase_11 AC 122 ms
56,164 KB
testcase_12 AC 121 ms
55,824 KB
testcase_13 AC 121 ms
56,256 KB
testcase_14 AC 121 ms
55,784 KB
testcase_15 AC 121 ms
56,172 KB
testcase_16 AC 125 ms
56,112 KB
testcase_17 AC 122 ms
56,224 KB
testcase_18 AC 123 ms
55,940 KB
testcase_19 AC 122 ms
56,312 KB
testcase_20 AC 122 ms
55,888 KB
testcase_21 AC 123 ms
56,056 KB
testcase_22 AC 124 ms
56,184 KB
testcase_23 AC 123 ms
56,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) throws Exception {
		Scanner scanner = new Scanner(System.in);
		int K = scanner.nextInt();
		int S = scanner.nextInt();
		scanner.close();
		System.out.println(S * 100 / (100 - K));
	}
}
0