結果

問題 No.169 何分かかるの!?
ユーザー doyazaki012doyazaki012
提出日時 2015-04-24 18:35:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 246 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 73,764 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-05 01:00:22
合計ジャッジ時間 6,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,156 KB
testcase_01 AC 130 ms
54,144 KB
testcase_02 AC 131 ms
53,880 KB
testcase_03 AC 130 ms
53,972 KB
testcase_04 AC 132 ms
54,192 KB
testcase_05 AC 132 ms
53,944 KB
testcase_06 AC 128 ms
53,880 KB
testcase_07 AC 131 ms
54,172 KB
testcase_08 AC 130 ms
53,984 KB
testcase_09 AC 132 ms
53,880 KB
testcase_10 AC 131 ms
53,860 KB
testcase_11 AC 128 ms
54,020 KB
testcase_12 AC 129 ms
54,180 KB
testcase_13 AC 127 ms
54,076 KB
testcase_14 AC 129 ms
54,244 KB
testcase_15 AC 128 ms
54,280 KB
testcase_16 AC 129 ms
54,208 KB
testcase_17 AC 130 ms
54,256 KB
testcase_18 AC 127 ms
53,900 KB
testcase_19 AC 128 ms
54,256 KB
testcase_20 AC 129 ms
54,020 KB
testcase_21 AC 130 ms
54,224 KB
testcase_22 AC 130 ms
53,984 KB
testcase_23 AC 130 ms
54,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki169{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int k = stdIn.nextInt();
		int s = stdIn.nextInt();
		int answer = (int)(s+(s*k/(100-k)));
		System.out.println(answer);
	}
}
0