結果
| 問題 |
No.8013 Trigger EPIPE
|
| ユーザー |
ぷら
|
| 提出日時 | 2020-08-15 12:54:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 1,500 ms |
| コード長 | 213 bytes |
| コンパイル時間 | 1,533 ms |
| コンパイル使用メモリ | 163,616 KB |
| 実行使用メモリ | 24,836 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2024-07-17 02:50:33 |
| 合計ジャッジ時間 | 1,872 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 1e9+7;
int mod = 1e9+7;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
signed main() {
return 0;
}
ぷら