結果
問題 | No.2737 Compound Word |
ユーザー |
![]() |
提出日時 | 2024-04-20 12:39:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 577 bytes |
コンパイル時間 | 2,582 ms |
コンパイル使用メモリ | 207,372 KB |
最終ジャッジ日時 | 2025-02-21 06:21:10 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 27 |
ソースコード
#include <bits/stdc++.h>using namespace std;void fast_io() {ios_base::sync_with_stdio(false);cin.tie(nullptr);}int main() {fast_io();int n;cin >> n;vector<string> s(n);for (int i = 0; i < n; i++) {cin >> s[i];}vector<string> ss;for (int i = 0; i < n; i++) {for (int j = i + 1; j < n; j++) {ss.push_back(s[i] + s[j]);ss.push_back(s[j] + s[i]);}}sort(ss.begin(), ss.end());ss.erase(unique(ss.begin(), ss.end()), ss.end());cout << ss.size() << endl;}