結果
問題 | No.365 ジェンガソート |
ユーザー |
![]() |
提出日時 | 2019-06-29 22:02:34 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 287 bytes |
コンパイル時間 | 1,465 ms |
コンパイル使用メモリ | 166,700 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 05:41:25 |
合計ジャッジ時間 | 3,700 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 16 WA * 25 |
ソースコード
// ロジック検討中.#include <bits/stdc++.h>using namespace std;int main() {// 1. 入力情報取得.int N;scanf("%d", &N);int a[N];for(int i = 0; i < N; i++) scanf("%d", a + i);// 2. 出力.printf("%d\n", a[0] - 1);return 0;}