結果
| 問題 |
No.169 何分かかるの!?
|
| コンテスト | |
| ユーザー |
samplelpmas
|
| 提出日時 | 2016-11-13 02:07:19 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 117 ms / 1,000 ms |
| コード長 | 294 bytes |
| コンパイル時間 | 1,802 ms |
| コンパイル使用メモリ | 74,088 KB |
| 実行使用メモリ | 41,488 KB |
| 最終ジャッジ日時 | 2024-11-25 21:42:27 |
| 合計ジャッジ時間 | 5,365 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 22 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int doneRate = sc.nextInt();
int taskMinutes = sc.nextInt();
System.out.println(taskMinutes * 100 / (100 - doneRate));
}
}
samplelpmas