結果
| 問題 |
No.2034 Anti Lexicography
|
| コンテスト | |
| ユーザー |
pengin_2000
|
| 提出日時 | 2022-08-12 21:30:50 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 185 bytes |
| コンパイル時間 | 583 ms |
| コンパイル使用メモリ | 27,776 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-23 01:00:36 |
| 合計ジャッジ時間 | 1,285 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
#include<stdio.h>
int main()
{
int n;
scanf("%d", &n);
char s[200005];
scanf("%s", s);
int i;
for (i = 0; i < n; i++)
printf("%c", 'z' - s[i] + 'a');
printf("\n");
return 0;
}
pengin_2000