結果

問題 No.169 何分かかるの!?
ユーザー ffmm00
提出日時 2015-06-06 19:49:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 248 bytes
コンパイル時間 2,961 ms
コンパイル使用メモリ 74,204 KB
実行使用メモリ 54,068 KB
最終ジャッジ日時 2024-07-06 14:30:54
合計ジャッジ時間 6,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N169 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);

		int K = sca.nextInt();
		int S = sca.nextInt();

		int A = (S * 100) / (100 - K);

		System.out.println(A);

	}

}
0