結果
問題 |
No.1463 Hungry Kanten
|
ユーザー |
|
提出日時 | 2021-04-02 15:21:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 252 bytes |
コンパイル時間 | 1,461 ms |
コンパイル使用メモリ | 165,168 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-12-23 23:17:30 |
合計ジャッジ時間 | 2,178 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 20 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int n,k; cin>>n>>k; assert(n<=18); assert(2<=n); assert(k<=n); int cnt=0; int a; while(cin>>a){ assert(a<=1000); cnt++; } assert(cnt==n); }