結果

問題 No.3132 暗号メッセージ
ユーザー ldsyb
提出日時 2025-05-02 21:32:03
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 392 bytes
コンパイル時間 5,074 ms
コンパイル使用メモリ 333,032 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-05-02 21:32:10
合計ジャッジ時間 5,836 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 2 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using namespace chrono;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif

int main()
{
    int64_t n;
    cin >> n;
    vector<int64_t> ds(n);
    for (auto &&d : ds)
    {
        cin >> d;
    }

    for (auto &&d : ds)
    {
        cout << char('A' + (d % 26));
    }
    cout << endl;

    return 0;
}
0