結果
問題 |
No.2049 POP
|
ユーザー |
|
提出日時 | 2022-08-24 09:31:48 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 207 bytes |
コンパイル時間 | 216 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 19:32:49 |
合計ジャッジ時間 | 923 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 10 |
ソースコード
#include <stdio.h> int main(void) { long long N; scanf("%lld", &N); char s[101]; scanf("%s", s); for (int i = 1; i < N; ++i) printf("%c", s[i]); printf("\n"); return 0; }