結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
testestest
|
| 提出日時 | 2015-08-05 01:57:33 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 143 bytes |
| 記録 | |
| コンパイル時間 | 206 ms |
| コンパイル使用メモリ | 40,640 KB |
| 実行使用メモリ | 48,484 KB |
| 最終ジャッジ日時 | 2026-04-01 16:43:48 |
| 合計ジャッジ時間 | 941 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 13 |
ソースコード
#include <stdio.h>
int main(){
int i=0;
char s[1025];
scanf("%s",s);
while(s[i])s[i++]-=i%26+1-(s[i]-i%26<66)*26;
printf("%s\n",s);
return 0;
}
testestest