結果
問題 | No.304 鍵(1) |
ユーザー | YamaKasa |
提出日時 | 2018-05-21 16:19:09 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 330 bytes |
コンパイル時間 | 2,231 ms |
コンパイル使用メモリ | 74,496 KB |
実行使用メモリ | 72,448 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-07-16 15:48:41 |
合計ジャッジ時間 | 4,779 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); for(int i = 0; i < 1000; i++) { String str = String.format("%3d", i); System.out.println(str); String r = scan.next(); if(r.equals("unlocked")) { break; } } scan.close(); } }