結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
27,888 KB
testcase_01 AC 29 ms
28,040 KB
testcase_02 AC 65 ms
28,424 KB
testcase_03 AC 65 ms
28,040 KB
testcase_04 AC 65 ms
28,040 KB
testcase_05 AC 37 ms
27,912 KB
testcase_06 AC 65 ms
27,784 KB
testcase_07 AC 66 ms
28,168 KB
testcase_08 AC 48 ms
28,152 KB
testcase_09 AC 65 ms
28,540 KB
testcase_10 AC 65 ms
28,040 KB
testcase_11 AC 64 ms
27,784 KB
testcase_12 AC 65 ms
27,912 KB
testcase_13 AC 65 ms
28,424 KB
testcase_14 AC 65 ms
28,424 KB
testcase_15 AC 65 ms
27,912 KB
testcase_16 AC 65 ms
27,784 KB
testcase_17 AC 66 ms
28,012 KB
testcase_18 AC 64 ms
27,784 KB
testcase_19 AC 49 ms
27,772 KB
testcase_20 AC 49 ms
28,168 KB
testcase_21 AC 65 ms
28,040 KB
testcase_22 AC 59 ms
27,912 KB
testcase_23 AC 43 ms
28,296 KB
testcase_24 AC 50 ms
28,552 KB
testcase_25 AC 66 ms
28,168 KB
testcase_26 AC 49 ms
28,552 KB
testcase_27 AC 59 ms
28,168 KB
testcase_28 AC 45 ms
28,552 KB
testcase_29 AC 48 ms
28,040 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{
	$|=1;
	say "? ","a"x$n;
	for$i(0..$n-1){
		for$c("b".."y"){
			say "? ","a"x$i,$c,"a"x($n-$i-1);
		}
	}
}
0