結果
問題 |
No.1536 仕切り直し
|
ユーザー |
![]() |
提出日時 | 2021-04-02 23:51:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 592 ms |
コンパイル使用メモリ | 65,280 KB |
最終ジャッジ日時 | 2025-01-20 10:11:11 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 10 |
ソースコード
#include<iostream> #include<assert.h> const int MAX_A=1000000000; int main(){ int n,m;std::cin >> n >> m; assert(1<=n && n<=2000); assert(1<=m && m<=2000); while(n--){ long long a; std::cin >> a; assert(-MAX_A<=a && a<=MAX_A); } }