結果

問題 No.169 何分かかるの!?
ユーザー bellbell
提出日時 2021-02-16 00:57:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 255 bytes
コンパイル時間 4,491 ms
コンパイル使用メモリ 71,212 KB
実行使用メモリ 58,380 KB
最終ジャッジ日時 2023-09-30 22:48:51
合計ジャッジ時間 8,659 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,944 KB
testcase_01 AC 124 ms
56,084 KB
testcase_02 AC 121 ms
56,192 KB
testcase_03 AC 121 ms
56,196 KB
testcase_04 AC 121 ms
55,904 KB
testcase_05 AC 120 ms
58,380 KB
testcase_06 AC 122 ms
56,076 KB
testcase_07 AC 123 ms
55,768 KB
testcase_08 AC 126 ms
55,892 KB
testcase_09 AC 119 ms
55,864 KB
testcase_10 AC 121 ms
56,092 KB
testcase_11 AC 122 ms
56,120 KB
testcase_12 AC 119 ms
55,792 KB
testcase_13 AC 121 ms
55,696 KB
testcase_14 AC 122 ms
55,828 KB
testcase_15 AC 123 ms
55,792 KB
testcase_16 AC 121 ms
56,248 KB
testcase_17 AC 119 ms
55,708 KB
testcase_18 AC 120 ms
56,044 KB
testcase_19 AC 120 ms
55,772 KB
testcase_20 AC 120 ms
55,988 KB
testcase_21 AC 120 ms
56,280 KB
testcase_22 AC 120 ms
55,852 KB
testcase_23 AC 119 ms
56,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

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

0