結果

問題 No.305 鍵(2)
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-28 21:47:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 2,970 ms
コンパイル使用メモリ 82,756 KB
実行使用メモリ 72,520 KB
平均クエリ数 92.62
最終ジャッジ日時 2024-07-17 02:21:22
合計ジャッジ時間 6,289 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
71,976 KB
testcase_01 AC 234 ms
72,064 KB
testcase_02 AC 223 ms
72,164 KB
testcase_03 AC 238 ms
71,600 KB
testcase_04 AC 224 ms
71,972 KB
testcase_05 AC 228 ms
72,520 KB
testcase_06 AC 192 ms
71,456 KB
testcase_07 AC 221 ms
72,168 KB
testcase_08 AC 236 ms
72,136 KB
testcase_09 AC 222 ms
71,712 KB
testcase_10 AC 228 ms
72,104 KB
testcase_11 AC 224 ms
71,976 KB
testcase_12 AC 217 ms
71,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String ans = "";
    for(int i = 0; i < 10; i++) {
      int s = 0;
      int l = 0;
      for(int j = 0; j < 10; j++) {
        String t = "";
        for(int k = 0; k < 10; k++) {
          if(k == i) {
            t += j;
          } else {
            t += 0;
          }
        }
        System.out.println(t);
        System.out.flush();
        int L = sc.nextInt();
        String str = sc.next();
        if(str.equals("unlocked")) {
          System.exit(0);
        }
        if(l <= L) {
          s = j;
          l = L;
        }
      }
      ans += s;
    }
    System.out.println(ans);
    System.exit(0);
  }
}
0