結果

問題 No.169 何分かかるの!?
ユーザー spaciaspacia
提出日時 2015-12-16 09:53:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 42 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 3,309 ms
コンパイル使用メモリ 71,632 KB
実行使用メモリ 49,400 KB
最終ジャッジ日時 2023-10-14 10:45:45
合計ジャッジ時間 4,404 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
49,280 KB
testcase_01 AC 41 ms
49,360 KB
testcase_02 AC 41 ms
49,264 KB
testcase_03 AC 42 ms
49,264 KB
testcase_04 AC 42 ms
49,288 KB
testcase_05 AC 41 ms
49,120 KB
testcase_06 AC 42 ms
49,200 KB
testcase_07 AC 42 ms
49,256 KB
testcase_08 AC 41 ms
49,012 KB
testcase_09 AC 42 ms
49,256 KB
testcase_10 AC 42 ms
49,180 KB
testcase_11 AC 42 ms
49,076 KB
testcase_12 AC 42 ms
49,176 KB
testcase_13 AC 42 ms
49,032 KB
testcase_14 AC 42 ms
49,400 KB
testcase_15 AC 42 ms
47,164 KB
testcase_16 AC 42 ms
49,072 KB
testcase_17 AC 42 ms
49,052 KB
testcase_18 AC 41 ms
49,116 KB
testcase_19 AC 42 ms
49,068 KB
testcase_20 AC 41 ms
49,072 KB
testcase_21 AC 41 ms
49,072 KB
testcase_22 AC 41 ms
49,064 KB
testcase_23 AC 41 ms
49,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main169 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int m = Integer.parseInt(br.readLine());
		
		System.out.println((int)(((double)m / (100 - n)) * 100));
	}
}
0