結果

問題 No.169 何分かかるの!?
ユーザー ffmm00ffmm00
提出日時 2015-06-06 19:49:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 248 bytes
コンパイル時間 2,961 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-07-06 14:30:54
合計ジャッジ時間 6,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,388 KB
testcase_01 AC 115 ms
53,972 KB
testcase_02 AC 110 ms
52,908 KB
testcase_03 AC 118 ms
54,036 KB
testcase_04 AC 110 ms
52,900 KB
testcase_05 AC 101 ms
52,424 KB
testcase_06 AC 114 ms
53,804 KB
testcase_07 AC 103 ms
52,500 KB
testcase_08 AC 117 ms
53,568 KB
testcase_09 AC 117 ms
53,840 KB
testcase_10 AC 117 ms
53,976 KB
testcase_11 AC 108 ms
53,216 KB
testcase_12 AC 113 ms
53,036 KB
testcase_13 AC 115 ms
54,068 KB
testcase_14 AC 113 ms
53,688 KB
testcase_15 AC 114 ms
53,824 KB
testcase_16 AC 111 ms
52,988 KB
testcase_17 AC 115 ms
53,736 KB
testcase_18 AC 117 ms
53,700 KB
testcase_19 AC 116 ms
54,036 KB
testcase_20 AC 102 ms
52,428 KB
testcase_21 AC 116 ms
54,024 KB
testcase_22 AC 115 ms
53,696 KB
testcase_23 AC 103 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N169 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		int K = sca.nextInt();
		int S = sca.nextInt();

		int A = (S * 100) / (100 - K);

		System.out.println(A);

	}

}
0