結果

問題 No.169 何分かかるの!?
ユーザー 練習生練習生
提出日時 2015-08-06 17:49:40
言語 Java19
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 245 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 70,888 KB
実行使用メモリ 56,156 KB
最終ジャッジ日時 2023-09-25 04:12:32
合計ジャッジ時間 7,511 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
56,156 KB
testcase_01 AC 125 ms
55,884 KB
testcase_02 AC 122 ms
55,640 KB
testcase_03 AC 123 ms
56,044 KB
testcase_04 AC 124 ms
55,448 KB
testcase_05 AC 125 ms
55,704 KB
testcase_06 AC 124 ms
55,932 KB
testcase_07 AC 126 ms
56,144 KB
testcase_08 AC 123 ms
55,936 KB
testcase_09 AC 123 ms
55,868 KB
testcase_10 AC 123 ms
55,456 KB
testcase_11 AC 125 ms
55,640 KB
testcase_12 AC 124 ms
55,912 KB
testcase_13 AC 124 ms
55,744 KB
testcase_14 AC 128 ms
55,704 KB
testcase_15 AC 125 ms
55,708 KB
testcase_16 AC 126 ms
55,636 KB
testcase_17 AC 125 ms
56,060 KB
testcase_18 AC 125 ms
56,000 KB
testcase_19 AC 124 ms
53,820 KB
testcase_20 AC 124 ms
55,864 KB
testcase_21 AC 125 ms
55,720 KB
testcase_22 AC 126 ms
55,632 KB
testcase_23 AC 125 ms
55,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No169 {
	public static void main(String[] args) {
		int k, s;
		Scanner sc = new Scanner(System.in);
		k = sc.nextInt();
		s = sc.nextInt();
		sc.close();
		System.out.println(s * 100 / (100 - k));
		
	}
}
0