結果
問題 | No.304 鍵(1) |
ユーザー | mits58 |
提出日時 | 2016-07-02 11:44:11 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 389 ms / 2,000 ms |
コード長 | 382 bytes |
コンパイル時間 | 2,343 ms |
コンパイル使用メモリ | 76,440 KB |
実行使用メモリ | 61,252 KB |
平均クエリ数 | 309.17 |
最終ジャッジ日時 | 2024-07-17 00:00:45 |
合計ジャッジ時間 | 4,785 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 192 ms
59,640 KB |
testcase_01 | AC | 227 ms
59,596 KB |
testcase_02 | AC | 389 ms
61,000 KB |
testcase_03 | AC | 228 ms
59,908 KB |
testcase_04 | AC | 332 ms
61,252 KB |
testcase_05 | AC | 224 ms
60,092 KB |
ソースコード
import java.util.Scanner; public class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); for(int i=0;i<10;i++){ for(int j=0;j<10;j++){ for(int k=0;k<10;k++){ System.out.println(Integer.toString(i)+Integer.toString(j)+Integer.toString(k)); String str=sc.next(); if(str.equals("unlocked")) System.exit(0); } } } } }