結果

問題 No.1603 Manhattan Social Distance
ユーザー mmn15277198
提出日時 2021-07-17 02:13:08
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 808 ms
コンパイル使用メモリ 93,132 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 13:25:00
合計ジャッジ時間 1,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>

using namespace std;

const long long MOD = (long long)(1e9) + 7;

int main() {

  //cout << fixed << setprecision(15);

  long long n , h , w;
  cin >> n >> h >> w;
  long long ans;
  if (n % 2 == 0) {
    ans = (n / 2) * (n / 2) * (h - 1 + w - 1);
  } else {
    ans = (n / 2 + 1) * (n / 2) * (h - 1 + w - 1);
  }
  cout << ans << endl;
  
  return 0;
}
0