結果
問題 | No.18 うーさー暗号 |
ユーザー | y_mazun |
提出日時 | 2015-04-24 17:09:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 338 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 34,816 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 05:40:16 |
合計ジャッジ時間 | 775 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 0 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 0 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:11:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%s", buff); | ~~~~~^~~~~~~~~~~~
ソースコード
#define REP(i,n) for(int i=0; i<(int)(n); i++) #include <cstring> #include <cstdio> #include <set> using namespace std; int main(){ char buff[1026]; scanf("%s", buff); const int len = strlen(buff); const int n = 'z' - 'a' + 1; REP(i,len){ buff[i] = (buff[i] - 'A' + (n - 1) * (i + 1)) % n + 'A'; } puts(buff); return 0; }