結果

問題 No.169 何分かかるの!?
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-21 22:34:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 236 bytes
コンパイル時間 3,882 ms
コンパイル使用メモリ 76,292 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-10-11 19:04:25
合計ジャッジ時間 7,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,176 KB
testcase_01 AC 135 ms
41,108 KB
testcase_02 AC 135 ms
40,984 KB
testcase_03 AC 133 ms
41,112 KB
testcase_04 AC 133 ms
40,964 KB
testcase_05 AC 135 ms
41,204 KB
testcase_06 AC 136 ms
41,016 KB
testcase_07 AC 137 ms
41,024 KB
testcase_08 AC 135 ms
41,212 KB
testcase_09 AC 137 ms
40,960 KB
testcase_10 AC 135 ms
41,224 KB
testcase_11 AC 135 ms
41,236 KB
testcase_12 AC 140 ms
41,208 KB
testcase_13 AC 136 ms
41,012 KB
testcase_14 AC 137 ms
40,948 KB
testcase_15 AC 137 ms
41,324 KB
testcase_16 AC 137 ms
41,320 KB
testcase_17 AC 136 ms
41,020 KB
testcase_18 AC 137 ms
41,240 KB
testcase_19 AC 133 ms
40,944 KB
testcase_20 AC 134 ms
41,316 KB
testcase_21 AC 135 ms
41,332 KB
testcase_22 AC 135 ms
41,312 KB
testcase_23 AC 134 ms
41,056 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