結果

問題 No.169 何分かかるの!?
ユーザー metasequometasequo
提出日時 2015-05-11 22:42:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 106 ms / 1,000 ms
コード長 226 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-07-05 23:15:20
合計ジャッジ時間 6,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,964 KB
testcase_01 AC 102 ms
41,352 KB
testcase_02 AC 104 ms
40,764 KB
testcase_03 AC 106 ms
41,256 KB
testcase_04 AC 103 ms
41,132 KB
testcase_05 AC 103 ms
41,152 KB
testcase_06 AC 103 ms
41,488 KB
testcase_07 AC 92 ms
40,004 KB
testcase_08 AC 105 ms
41,040 KB
testcase_09 AC 104 ms
41,196 KB
testcase_10 AC 99 ms
39,976 KB
testcase_11 AC 105 ms
41,032 KB
testcase_12 AC 98 ms
40,152 KB
testcase_13 AC 103 ms
41,196 KB
testcase_14 AC 105 ms
41,360 KB
testcase_15 AC 106 ms
41,360 KB
testcase_16 AC 104 ms
41,336 KB
testcase_17 AC 105 ms
41,272 KB
testcase_18 AC 104 ms
40,744 KB
testcase_19 AC 105 ms
41,336 KB
testcase_20 AC 105 ms
41,080 KB
testcase_21 AC 105 ms
41,008 KB
testcase_22 AC 104 ms
41,104 KB
testcase_23 AC 106 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main169 {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int K = scan.nextInt(), S = scan.nextInt();
		System.out.println(100 * S / (100 - K));
	}
}
0