結果
| 問題 |
No.8000 enuemu暗号
|
| コンテスト | |
| ユーザー |
SnowBeenDiding
|
| 提出日時 | 2024-08-25 16:13:57 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 498 bytes |
| コンパイル時間 | 4,923 ms |
| コンパイル使用メモリ | 309,156 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-08-25 16:14:17 |
| 合計ジャッジ時間 | 5,316 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | WA * 1 |
ソースコード
#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;
typedef long long ll;
int main() {
string s = "pfnovuaxqwufmbgrihcdejkolsty";
string t = "orangecipherbqsuftlmdxynzvwj";
string u;
cin >> u;
for (auto c : u) {
rep(i, 0, s.size()) {
if (s[i] == c) {
cout << t[i];
break;
}
}
}
cout << endl;
}
SnowBeenDiding