結果
問題 |
No.8063 幅優先探索
|
ユーザー |
![]() |
提出日時 | 2020-04-01 22:18:19 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 186 bytes |
コンパイル時間 | 1,438 ms |
コンパイル使用メモリ | 165,864 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 11:19:50 |
合計ジャッジ時間 | 2,014 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 4 WA * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 1000000007; int main() { int a, b, c, d, e, f; cin >> a >> b >> c >> d >> e >> f; cout << abs(c - d) + abs(e - f); }