結果
問題 | No.304 鍵(1) |
ユーザー | mits58 |
提出日時 | 2016-07-02 11:43:41 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 79,356 KB |
実行使用メモリ | 72,456 KB |
平均クエリ数 | 1.17 |
最終ジャッジ日時 | 2024-07-16 10:30:16 |
合計ジャッジ時間 | 5,479 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
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("locked")) System.exit(0); } } } } }