結果
| 問題 | No.1463 Hungry Kanten |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-02 15:21:17 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 252 bytes |
| 記録 | |
| コンパイル時間 | 1,389 ms |
| コンパイル使用メモリ | 179,784 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-29 21:02:37 |
| 合計ジャッジ時間 | 2,679 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 24 |
ソースコード
#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);
}