結果
| 問題 | 
                            No.365 ジェンガソート
                             | 
                    
| コンテスト | |
| ユーザー | 
                             E. Gordon
                         | 
                    
| 提出日時 | 2019-04-09 22:32:08 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 197 bytes | 
| コンパイル時間 | 449 ms | 
| コンパイル使用メモリ | 54,880 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-07-05 04:45:20 | 
| 合計ジャッジ時間 | 2,295 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 16 WA * 25 | 
ソースコード
#include <iostream>
using namespace std;
int main()
{
    int n, a1st, a;
    cin >> n >> a1st;
    for(int i = 1; i < n; i++){
        cin >> a;
    }
    cout << a1st - 1 << endl;
    return 0;
}
            
            
            
        
            
E. Gordon