結果

問題 No.305 鍵(2)
ユーザー uafr_csuafr_cs
提出日時 2015-11-27 22:50:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 3,897 ms
コンパイル使用メモリ 75,832 KB
実行使用メモリ 71,268 KB
平均クエリ数 67.69
最終ジャッジ日時 2024-07-16 06:38:25
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 198 ms
70,472 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 193 ms
70,608 KB
testcase_04 WA -
testcase_05 AC 208 ms
70,992 KB
testcase_06 AC 159 ms
71,040 KB
testcase_07 AC 203 ms
70,600 KB
testcase_08 AC 187 ms
70,012 KB
testcase_09 WA -
testcase_10 AC 193 ms
70,204 KB
testcase_11 AC 192 ms
71,268 KB
testcase_12 AC 206 ms
70,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		final int size = 10;
		
		int[] numbers = new int[size];
		
		int prev = 0;
		for(int i = 0; i < size; i++){
			
			StringBuilder sb = new StringBuilder();
			for(int j = 0; j < size; j++){
				sb.append(numbers[j]);
			}
			System.out.println(sb.toString());
			
			final int ret_value  = sc.nextInt();
			final String ret_str = sc.next();
			
			if(ret_str.equals("unlocked")){
				return;
			}
			
			if(ret_value <= prev){
				numbers[i]++;
				numbers[i] %= 10;
				i--;
			}
			prev = ret_value;
		}
	}

}
0