結果
問題 | No.304 鍵(1) |
ユーザー | htensai |
提出日時 | 2019-11-22 19:06:27 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 2,215 ms |
コンパイル使用メモリ | 76,180 KB |
実行使用メモリ | 72,304 KB |
平均クエリ数 | 9.33 |
最終ジャッジ日時 | 2024-07-16 18:14:34 |
合計ジャッジ時間 | 5,430 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 165 ms
72,096 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); System.out.flush(); String ans = sc.nextLine(); if (ans.equals("unlocked")) { break; } } } }