結果
問題 |
No.1770 N言っちゃダメゲーム (6)
|
ユーザー |
![]() |
提出日時 | 2019-08-07 03:26:50 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 1,483 ms |
コンパイル使用メモリ | 164,868 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 20:53:16 |
合計ジャッジ時間 | 8,051 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 44 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int p; cin >> p; assert(p >= 1); assert(p <= 100); for (int i = 0; i < p; i++) { int n, k; cin >> n >> k; assert(n >= 1); assert(n <= 100000000); assert(k >= 1); assert(k <= 100000000); } }