結果

問題 No.2768 Password Crack
ユーザー tailstails
提出日時 2024-05-31 22:28:02
言語 Perl
(5.38.2)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 1,086 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 28,808 KB
平均クエリ数 1714.80
最終ジャッジ日時 2024-05-31 22:28:12
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
28,272 KB
testcase_01 AC 29 ms
28,168 KB
testcase_02 AC 38 ms
28,168 KB
testcase_03 AC 38 ms
28,040 KB
testcase_04 AC 38 ms
28,552 KB
testcase_05 AC 31 ms
28,540 KB
testcase_06 AC 39 ms
27,912 KB
testcase_07 AC 39 ms
27,912 KB
testcase_08 AC 31 ms
28,424 KB
testcase_09 AC 38 ms
28,552 KB
testcase_10 AC 40 ms
28,168 KB
testcase_11 AC 37 ms
28,296 KB
testcase_12 AC 38 ms
28,552 KB
testcase_13 AC 38 ms
28,296 KB
testcase_14 AC 40 ms
28,040 KB
testcase_15 AC 38 ms
28,296 KB
testcase_16 AC 40 ms
27,784 KB
testcase_17 AC 39 ms
28,168 KB
testcase_18 AC 38 ms
28,156 KB
testcase_19 AC 32 ms
28,188 KB
testcase_20 AC 32 ms
28,168 KB
testcase_21 AC 38 ms
27,912 KB
testcase_22 AC 34 ms
28,040 KB
testcase_23 AC 30 ms
28,040 KB
testcase_24 AC 31 ms
28,168 KB
testcase_25 AC 38 ms
27,912 KB
testcase_26 AC 32 ms
28,808 KB
testcase_27 AC 34 ms
28,296 KB
testcase_28 AC 31 ms
28,040 KB
testcase_29 AC 31 ms
27,912 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use feature 'say';
$n=<>;
if(fork){
	$z="z"x$n;
	$o=<>;
	for$i(0..$n-1){
		for$c("b".."y"){
			$r=<>;
			if($r>$o){
				substr($z,$i,1)=$c;
			}
			if($r<$o){
				substr($z,$i,1)="a";
			}
		}
	}
	say "! $z";
}else{
	say "? ","a"x$n;
	for$i(0..$n-1){
		for$c("b".."y"){
			say "? ","a"x$i,$c,"a"x($n-$i-1);
		}
	}
}
0