結果

問題 No.169 何分かかるの!?
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-03-30 17:53:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 778 bytes
コンパイル時間 3,649 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-07-03 22:55:37
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,264 KB
testcase_01 AC 120 ms
41,060 KB
testcase_02 AC 116 ms
41,444 KB
testcase_03 AC 103 ms
40,132 KB
testcase_04 AC 108 ms
40,992 KB
testcase_05 AC 125 ms
41,100 KB
testcase_06 AC 120 ms
41,148 KB
testcase_07 AC 121 ms
41,460 KB
testcase_08 AC 124 ms
41,488 KB
testcase_09 AC 119 ms
40,200 KB
testcase_10 AC 106 ms
40,728 KB
testcase_11 AC 127 ms
40,988 KB
testcase_12 AC 122 ms
41,232 KB
testcase_13 AC 120 ms
41,052 KB
testcase_14 AC 131 ms
41,488 KB
testcase_15 AC 101 ms
39,832 KB
testcase_16 AC 107 ms
40,428 KB
testcase_17 AC 103 ms
40,032 KB
testcase_18 AC 101 ms
40,504 KB
testcase_19 AC 98 ms
39,704 KB
testcase_20 AC 123 ms
41,240 KB
testcase_21 AC 120 ms
41,140 KB
testcase_22 AC 128 ms
41,532 KB
testcase_23 AC 121 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.169 何分かかるの!?

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No169 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int k = 100 - sc.nextInt();
        int s = sc.nextInt();
        double ans = (double)s/k*100;
        out.println((int)ans);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0