結果
問題 |
No.365 ジェンガソート
|
ユーザー |
![]() |
提出日時 | 2017-09-07 03:28:10 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 231 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 10:51:18 |
合計ジャッジ時間 | 1,604 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 25 |
ソースコード
#include <stdio.h> #include <stdlib.h> #define ARRAY_NUM 100000 int main(void) { int i,n; int list[ARRAY_NUM]={}; scanf("%d", &n); for(i = 0; i< n; i++){ scanf("%d", &list[i]); } printf("%d", list[0]-1); return 0; }