結果

問題 No.2715 Unique Chimatagram
ユーザー tailstails
提出日時 2024-04-05 21:29:21
言語 Perl
(5.38.2)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 6,548 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-05 21:29:25
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,676 KB
testcase_01 AC 3 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 3 ms
6,676 KB
testcase_04 AC 3 ms
6,676 KB
testcase_05 AC 3 ms
6,676 KB
testcase_06 AC 3 ms
6,676 KB
testcase_07 AC 3 ms
6,676 KB
testcase_08 AC 27 ms
9,472 KB
testcase_09 AC 32 ms
10,240 KB
testcase_10 AC 27 ms
9,856 KB
testcase_11 AC 29 ms
10,240 KB
testcase_12 AC 27 ms
9,600 KB
testcase_13 AC 28 ms
10,240 KB
testcase_14 AC 26 ms
9,472 KB
testcase_15 AC 28 ms
9,856 KB
testcase_16 AC 25 ms
9,472 KB
testcase_17 AC 27 ms
9,856 KB
testcase_18 AC 40 ms
11,008 KB
testcase_19 AC 40 ms
11,008 KB
testcase_20 AC 41 ms
11,008 KB
testcase_21 AC 45 ms
11,008 KB
testcase_22 AC 40 ms
11,008 KB
testcase_23 AC 42 ms
11,008 KB
testcase_24 AC 40 ms
11,008 KB
testcase_25 AC 42 ms
11,008 KB
testcase_26 AC 42 ms
11,008 KB
testcase_27 AC 41 ms
11,008 KB
testcase_28 AC 20 ms
6,676 KB
testcase_29 AC 22 ms
6,676 KB
testcase_30 AC 20 ms
6,676 KB
testcase_31 AC 19 ms
6,676 KB
testcase_32 AC 20 ms
6,676 KB
testcase_33 AC 3 ms
6,676 KB
testcase_34 AC 2 ms
6,676 KB
testcase_35 AC 3 ms
6,676 KB
testcase_36 AC 2 ms
6,676 KB
testcase_37 AC 3 ms
6,676 KB
testcase_38 AC 4 ms
6,676 KB
testcase_39 AC 11 ms
6,676 KB
testcase_40 AC 10 ms
6,676 KB
testcase_41 AC 25 ms
8,064 KB
testcase_42 AC 26 ms
6,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Unquoted string "a" may clash with future reserved word at Main.pl line 4.
Unquoted string "z" may clash with future reserved word at Main.pl line 4.
Main.pl syntax OK

ソースコード

diff #

<>;
for(<>){
	@a=/./g;
	for$c(a..z){
		$h{join"",sort@a,$c}+=1;
	}
}
for(keys%h){
	if($h{$_}==1){
		print;
		exit;
	}
}
print-1;
0