結果

問題 No.1635 Let’s Sort Integers!!
ユーザー logx
提出日時 2021-07-07 07:39:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 904 ms
コンパイル使用メモリ 64,896 KB
最終ジャッジ日時 2025-01-22 17:55:05
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 77
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<assert.h>

//制約チェック
//WAならOK
int main(){
    int n;long long k;
    std::cin >> n >> k;

    assert(2<=n && n<=1000000);
    assert(1<=k && k<=1000000000000ll);
}
0