結果
| 問題 |
No.3132 暗号メッセージ
|
| コンテスト | |
| ユーザー |
forest3
|
| 提出日時 | 2025-06-04 21:07:54 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 320 bytes |
| コンパイル時間 | 1,635 ms |
| コンパイル使用メモリ | 165,356 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2025-06-04 21:07:57 |
| 合計ジャッジ時間 | 2,808 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for(int i = 0; i < n; i++)
int main() {
int N;
cin >> N;
vector<int> d(N), a(N);
rep(i, N) cin >> d[i];
sort(d.begin(), d.end());
rep(i, N) a[i] = d[i] % 26;
string s;
rep(i, N) s += (char)(a[i] + 'A');
cout << s << endl;
}
forest3