結果
問題 | No.18 うーさー暗号 |
ユーザー | Yug_min_null |
提出日時 | 2021-09-05 06:42:53 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 2,037 ms |
コンパイル使用メモリ | 187,448 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-21 17:49:28 |
合計ジャッジ時間 | 2,897 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#define _GLIBCXX_DEBUG #include <bits/stdc++.h> using namespace std; int main() { string M = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; string S; cin >> S; for(int i = 0; i < (int)S.size(); i++){ int j = M.find(S[i]); cout << M[(j-i+2599)%26]; } cout << endl; }