結果
| 問題 | No.2715 Unique Chimatagram |
| コンテスト | |
| ユーザー |
👑 tails
|
| 提出日時 | 2024-04-05 21:29:21 |
| 言語 | Perl (5.44.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 31 ms / 2,000 ms |
| + 167µs | |
| コード長 | 129 bytes |
| 記録 | |
| コンパイル時間 | 58 ms |
| コンパイル使用メモリ | 9,764 KB |
| 実行使用メモリ | 11,136 KB |
| 最終ジャッジ日時 | 2026-09-07 02:35:44 |
| 合計ジャッジ時間 | 2,989 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 40 |
コンパイルメッセージ
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
ソースコード
<>;
for(<>){
@a=/./g;
for$c(a..z){
$h{join"",sort@a,$c}+=1;
}
}
for(keys%h){
if($h{$_}==1){
print;
exit;
}
}
print-1;
tails