結果

問題 No.2049 POP
ユーザー Maeda
提出日時 2025-03-18 13:02:27
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 24,704 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2025-03-18 13:02:29
合計ジャッジ時間 1,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         scanf("%d",&n);
      |         ^~~~~~~~~~~~~~
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s",str);
      |         ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>


void main(void) {
	int n = 0 ;
	scanf("%d",&n);
	char str[1000] = "a";
	scanf("%s",str);
	for(int i = 1 ; i < n-1;i++){
		printf("%c",str[i]);
	}
}
0