結果

問題 No.169 何分かかるの!?
ユーザー ki_ki33ki_ki33
提出日時 2015-03-22 23:22:46
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-29 00:08:03
合計ジャッジ時間 5,433 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 117 ms
41,364 KB
testcase_02 AC 115 ms
41,156 KB
testcase_03 AC 104 ms
41,172 KB
testcase_04 AC 116 ms
41,012 KB
testcase_05 WA -
testcase_06 AC 106 ms
41,428 KB
testcase_07 AC 104 ms
41,284 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 114 ms
41,416 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 108 ms
41,272 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 113 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.awt.Point;
import java.awt.Rectangle;
import java.awt.geom.Rectangle2D;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.*;
import java.util.Map.Entry;
import java.util.concurrent.ConcurrentSkipListSet;

public class Main {
	public static final int C =  1000000007;
	static final int CY = 1000000000;
	//static boolean MAP[][];
	static int K;
	static int B;
	static int[][] POS;
	static String STR;
	static int S;
	static int X[][];
	static int HA[];
	static long DP[];
	static int ST[][];
	static ConcurrentSkipListSet<Integer> TS;
	static ArrayList<Integer> AL;
	public static void main(String[] args) {
		StringBuilder sb = new StringBuilder();
		BufferedInputStream bs = new BufferedInputStream(System.in);
		Scanner sc = new Scanner(bs);

		K = sc.nextInt();
		S = sc.nextInt();

		


		long ans = S*(100/(100-K));


		System.out.println(ans);
	}
}
0