結果
| 問題 | No.863 計算量 |
| コンテスト | |
| ユーザー |
ks2m
|
| 提出日時 | 2019-08-16 21:23:14 |
| 言語 | Java (openjdk 26.0.2.1) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 1,000 ms |
| + 842µs | |
| コード長 | 301 bytes |
| 記録 | |
| コンパイル時間 | 1,273 ms |
| コンパイル使用メモリ | 83,652 KB |
| 実行使用メモリ | 43,200 KB |
| 最終ジャッジ日時 | 2026-09-02 13:22:24 |
| 合計ジャッジ時間 | 3,481 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
sc.close();
if (b / a < 100) {
System.out.println(1);
} else {
System.out.println(2);
}
}
}
ks2m