結果

問題 No.169 何分かかるの!?
ユーザー spaciaspacia
提出日時 2015-12-16 09:53:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 50,276 KB
最終ジャッジ日時 2024-09-16 05:39:35
合計ジャッジ時間 4,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
50,012 KB
testcase_01 AC 51 ms
50,252 KB
testcase_02 AC 53 ms
49,828 KB
testcase_03 AC 51 ms
50,232 KB
testcase_04 AC 52 ms
50,232 KB
testcase_05 AC 52 ms
50,188 KB
testcase_06 AC 54 ms
49,672 KB
testcase_07 AC 53 ms
50,136 KB
testcase_08 AC 53 ms
50,264 KB
testcase_09 AC 55 ms
49,832 KB
testcase_10 AC 52 ms
50,136 KB
testcase_11 AC 52 ms
50,140 KB
testcase_12 AC 52 ms
49,908 KB
testcase_13 AC 51 ms
49,812 KB
testcase_14 AC 50 ms
49,920 KB
testcase_15 AC 49 ms
49,712 KB
testcase_16 AC 51 ms
50,052 KB
testcase_17 AC 52 ms
50,276 KB
testcase_18 AC 54 ms
49,896 KB
testcase_19 AC 53 ms
50,200 KB
testcase_20 AC 52 ms
49,724 KB
testcase_21 AC 51 ms
49,924 KB
testcase_22 AC 51 ms
49,988 KB
testcase_23 AC 51 ms
49,692 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