結果

問題 No.365 ジェンガソート
ユーザー lioo
提出日時 2021-04-13 17:52:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 63,708 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-29 22:50:57
合計ジャッジ時間 2,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main(){
    int N;
    int a;
    int tmp;
    
    cin>>N>>a;
    for(int i=1; i<N; i++){
        cin>>tmp;
    }

    cout<<a-1<<endl;
}
0