結果

問題 No.169 何分かかるの!?
ユーザー kenji_shioya
提出日時 2016-06-21 22:34:39
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

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