結果

問題 No.304 鍵(1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-21 18:46:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 76,180 KB
実行使用メモリ 72,268 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-07-17 01:15:08
合計ジャッジ時間 4,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
70,152 KB
testcase_01 AC 192 ms
71,016 KB
testcase_02 AC 351 ms
72,268 KB
testcase_03 AC 190 ms
70,436 KB
testcase_04 AC 282 ms
71,532 KB
testcase_05 AC 190 ms
70,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int test = 0;
    while(true) {
      String num = "";
      if(test < 10) {
        num = "00" + String.valueOf(test);
      } else if(test < 100) {
        num = "0" + String.valueOf(test);
      } else {
        num = String.valueOf(test);
      }
      test++;
      System.out.println(num);
      String ret = sc.next();
      if(ret.equals("unlocked")) break;
    }
  }
}
0