結果

問題 No.365 ジェンガソート
ユーザー jokin_tokei
提出日時 2017-09-07 03:24:47
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 202 bytes
コンパイル時間 1,079 ms
コンパイル使用メモリ 27,264 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 10:51:06
合計ジャッジ時間 2,765 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>


int main(void) {
	int i,n;
	int list[100000]={};

	scanf("%d", &n);
	for(i = 0; i< n; i++){
		scanf("%d", &list[i]);
	}


	printf("%d", list[0]-1);

	return 0;
}
0