結果
問題 | No.304 鍵(1) |
ユーザー | htensai |
提出日時 | 2019-11-22 19:02:36 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 326 bytes |
コンパイル時間 | 4,167 ms |
コンパイル使用メモリ | 76,108 KB |
実行使用メモリ | 71,876 KB |
平均クエリ数 | 9.33 |
最終ジャッジ日時 | 2024-07-16 18:14:17 |
合計ジャッジ時間 | 5,416 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 166 ms
71,540 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); for (int i = 0; i < 1000; i++) { System.out.println("" + i / 100 + i / 10 % 10 + i % 100); String ans = sc.nextLine(); if (ans.equals("unlocked")) { break; } } } }