結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
gon_027
|
| 提出日時 | 2019-09-12 22:42:01 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 242 bytes |
| 記録 | |
| コンパイル時間 | 396 ms |
| コンパイル使用メモリ | 74,348 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-03-24 01:24:24 |
| 合計ジャッジ時間 | 1,133 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 13 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(){
string s;
cin >> s;
for(int i = 0; i < s.size(); i++){
s[i] = s[i] - ((i + 1) % 26);
cout << i % 26 << endl;
}
cout << s << endl;;
}
gon_027