結果
| 問題 | No.18 うーさー暗号 |
| コンテスト | |
| ユーザー |
piyoko_212
|
| 提出日時 | 2015-12-29 00:29:03 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 209 bytes |
| コンパイル時間 | 194 ms |
| コンパイル使用メモリ | 33,352 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-07 05:55:32 |
| 合計ジャッジ時間 | 709 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%s",str);
| ~~~~~^~~~~~~~~~
ソースコード
#include<stdio.h>
#include<algorithm>
using namespace std;
char str[1100];
int main(){
scanf("%s",str);
for(int i=0;str[i];i++){
str[i]+=(26-(i+1)%26);
if(str[i]>'Z')str[i]-=26;
}
printf("%s\n",str);
}
piyoko_212