結果

問題 No.169 何分かかるの!?
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-21 22:34:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 236 bytes
コンパイル時間 3,960 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-04-20 00:07:24
合計ジャッジ時間 6,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,288 KB
testcase_01 AC 113 ms
53,876 KB
testcase_02 AC 103 ms
53,004 KB
testcase_03 AC 112 ms
53,836 KB
testcase_04 AC 103 ms
52,960 KB
testcase_05 AC 114 ms
54,196 KB
testcase_06 AC 115 ms
54,080 KB
testcase_07 AC 104 ms
52,856 KB
testcase_08 AC 105 ms
52,976 KB
testcase_09 AC 105 ms
52,940 KB
testcase_10 AC 117 ms
54,008 KB
testcase_11 AC 112 ms
53,976 KB
testcase_12 AC 104 ms
52,976 KB
testcase_13 AC 105 ms
53,056 KB
testcase_14 AC 105 ms
53,028 KB
testcase_15 AC 107 ms
52,964 KB
testcase_16 AC 118 ms
54,240 KB
testcase_17 AC 108 ms
53,764 KB
testcase_18 AC 106 ms
52,960 KB
testcase_19 AC 119 ms
53,868 KB
testcase_20 AC 115 ms
54,068 KB
testcase_21 AC 106 ms
53,012 KB
testcase_22 AC 114 ms
53,960 KB
testcase_23 AC 117 ms
54,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise107{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int p = sc.nextInt();
    int m = sc.nextInt();

    System.out.println(m * 100 / (100 - p));
  }
}
0