結果

問題 No.169 何分かかるの!?
ユーザー samplelpmassamplelpmas
提出日時 2016-11-13 02:07:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 294 bytes
コンパイル時間 3,818 ms
コンパイル使用メモリ 72,140 KB
実行使用メモリ 56,528 KB
最終ジャッジ日時 2023-08-17 04:03:29
合計ジャッジ時間 6,590 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,824 KB
testcase_01 AC 124 ms
55,824 KB
testcase_02 AC 126 ms
55,716 KB
testcase_03 AC 122 ms
55,948 KB
testcase_04 AC 124 ms
56,000 KB
testcase_05 AC 123 ms
56,528 KB
testcase_06 AC 126 ms
56,376 KB
testcase_07 AC 122 ms
55,712 KB
testcase_08 AC 121 ms
55,356 KB
testcase_09 AC 123 ms
55,652 KB
testcase_10 AC 121 ms
55,656 KB
testcase_11 AC 121 ms
55,936 KB
testcase_12 AC 122 ms
56,192 KB
testcase_13 AC 124 ms
55,712 KB
testcase_14 AC 124 ms
55,588 KB
testcase_15 AC 124 ms
55,800 KB
testcase_16 AC 124 ms
55,652 KB
testcase_17 AC 123 ms
55,712 KB
testcase_18 AC 123 ms
55,312 KB
testcase_19 AC 126 ms
55,692 KB
testcase_20 AC 132 ms
55,656 KB
testcase_21 AC 125 ms
55,712 KB
testcase_22 AC 124 ms
55,956 KB
testcase_23 AC 125 ms
55,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int doneRate = sc.nextInt();
        int taskMinutes = sc.nextInt();

        System.out.println(taskMinutes * 100 / (100 - doneRate));

    }

}
0