結果

問題 No.169 何分かかるの!?
ユーザー m4s4k1ch1m4s4k1ch1
提出日時 2015-05-28 15:42:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 2,061 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 51,964 KB
最終ジャッジ日時 2024-07-06 12:08:18
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
49,792 KB
testcase_01 AC 48 ms
50,040 KB
testcase_02 AC 46 ms
49,744 KB
testcase_03 AC 45 ms
49,780 KB
testcase_04 AC 46 ms
49,880 KB
testcase_05 AC 45 ms
49,540 KB
testcase_06 AC 47 ms
50,016 KB
testcase_07 AC 48 ms
49,640 KB
testcase_08 AC 46 ms
49,960 KB
testcase_09 AC 47 ms
49,680 KB
testcase_10 AC 47 ms
49,856 KB
testcase_11 AC 47 ms
50,044 KB
testcase_12 AC 46 ms
49,788 KB
testcase_13 AC 46 ms
49,988 KB
testcase_14 AC 45 ms
50,032 KB
testcase_15 AC 48 ms
50,352 KB
testcase_16 AC 46 ms
49,664 KB
testcase_17 AC 45 ms
49,964 KB
testcase_18 AC 45 ms
49,896 KB
testcase_19 AC 46 ms
51,964 KB
testcase_20 AC 46 ms
49,996 KB
testcase_21 AC 47 ms
49,660 KB
testcase_22 AC 44 ms
49,788 KB
testcase_23 AC 44 ms
50,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String args[]) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String line = br.readLine();
		int p = Integer.parseInt(line);
		line = br.readLine();
		int t = Integer.parseInt(line);
		System.out.println((int)Math.floor(t / (double)((100 - p)) * 100));
	}
}
0