結果
問題 |
No.169 何分かかるの!?
|
ユーザー |
![]() |
提出日時 | 2017-04-30 08:59:25 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 55 ms / 1,000 ms |
コード長 | 463 bytes |
コンパイル時間 | 2,160 ms |
コンパイル使用メモリ | 74,072 KB |
実行使用メモリ | 50,356 KB |
最終ジャッジ日時 | 2024-09-13 23:08:13 |
合計ジャッジ時間 | 4,134 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); double K = Integer.parseInt(reader.readLine()); int S = Integer.parseInt(reader.readLine()); System.out.println((int)((S / (100-K))*100)); } }