結果

問題 No.2768 Password Crack
ユーザー tailstails
提出日時 2024-05-31 22:26:40
言語 Perl
(5.40.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 28,552 KB
平均クエリ数 1714.80
最終ジャッジ日時 2024-12-21 00:03:29
合計ジャッジ時間 4,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
28,144 KB
testcase_01 AC 35 ms
28,040 KB
testcase_02 AC 71 ms
28,040 KB
testcase_03 AC 69 ms
28,424 KB
testcase_04 AC 70 ms
27,912 KB
testcase_05 AC 43 ms
28,424 KB
testcase_06 AC 68 ms
28,284 KB
testcase_07 AC 67 ms
28,296 KB
testcase_08 AC 49 ms
28,168 KB
testcase_09 AC 69 ms
28,168 KB
testcase_10 AC 66 ms
27,784 KB
testcase_11 AC 74 ms
28,168 KB
testcase_12 AC 66 ms
28,168 KB
testcase_13 AC 68 ms
27,912 KB
testcase_14 AC 69 ms
28,552 KB
testcase_15 AC 69 ms
28,168 KB
testcase_16 AC 68 ms
28,168 KB
testcase_17 AC 65 ms
28,552 KB
testcase_18 AC 70 ms
27,912 KB
testcase_19 AC 55 ms
28,552 KB
testcase_20 AC 58 ms
28,040 KB
testcase_21 AC 70 ms
28,424 KB
testcase_22 AC 64 ms
27,784 KB
testcase_23 AC 46 ms
27,784 KB
testcase_24 AC 53 ms
28,040 KB
testcase_25 AC 64 ms
27,912 KB
testcase_26 AC 50 ms
28,552 KB
testcase_27 AC 64 ms
27,912 KB
testcase_28 AC 49 ms
28,168 KB
testcase_29 AC 51 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