結果
問題 | No.304 鍵(1) |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-11 23:21:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 2,403 ms |
コンパイル使用メモリ | 76,856 KB |
実行使用メモリ | 73,952 KB |
平均クエリ数 | 310.17 |
最終ジャッジ日時 | 2024-07-16 15:25:37 |
合計ジャッジ時間 | 6,614 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int num = 0; String key = ""; while (true) { String s = ""; if (num <= 9) { s += "00"; s += num; } else if (10<=num && num<=99) { s += "0"; s += num; } else { s += num; } System.out.println(s); String result = sc.next(); if (result.equals("unlocked")) { key = s; break; } num++; } System.out.println(key); } }