結果

問題 No.169 何分かかるの!?
ユーザー r.suzukir.suzuki
提出日時 2015-12-28 23:24:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 239 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-09-19 08:02:35
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,312 KB
testcase_01 AC 127 ms
41,440 KB
testcase_02 AC 125 ms
41,404 KB
testcase_03 AC 123 ms
41,556 KB
testcase_04 AC 126 ms
41,692 KB
testcase_05 AC 123 ms
41,452 KB
testcase_06 AC 126 ms
41,568 KB
testcase_07 AC 127 ms
41,352 KB
testcase_08 AC 125 ms
41,612 KB
testcase_09 AC 127 ms
41,360 KB
testcase_10 AC 123 ms
41,296 KB
testcase_11 AC 123 ms
41,400 KB
testcase_12 AC 125 ms
41,592 KB
testcase_13 AC 123 ms
41,260 KB
testcase_14 AC 124 ms
41,248 KB
testcase_15 AC 128 ms
41,308 KB
testcase_16 AC 112 ms
41,180 KB
testcase_17 AC 124 ms
41,180 KB
testcase_18 AC 124 ms
41,400 KB
testcase_19 AC 123 ms
41,192 KB
testcase_20 AC 124 ms
41,708 KB
testcase_21 AC 123 ms
41,712 KB
testcase_22 AC 122 ms
41,536 KB
testcase_23 AC 122 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public class No_169 {

	public static void main(String[] args) {
		java.util.Scanner sc = new java.util.Scanner(System.in);
		int K = sc.nextInt();
		int S = sc.nextInt();
		int x = (K * S) / (100 - K);

		System.out.println(S + x);

	}

}
0