結果

問題 No.1061 素敵な数列
ユーザー milanis48663220
提出日時 2020-05-22 22:19:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 80,964 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-05 18:14:18
合計ジャッジ時間 7,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cout << -1 << endl;
}
0