結果
| 問題 | No.1635 Let’s Sort Integers!! |
| コンテスト | |
| ユーザー |
logx
|
| 提出日時 | 2021-07-07 07:39:09 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 674 ms |
| コンパイル使用メモリ | 76,544 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-21 11:16:55 |
| 合計ジャッジ時間 | 8,514 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 77 |
ソースコード
#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);
}
logx