結果

問題 No.1004 サイコロの実装 (2)
ユーザー kyo1
提出日時 2020-08-17 09:18:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 190,700 KB
最終ジャッジ日時 2025-01-13 02:12:28
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int64_t a, b, x, N;
  cin >> a >> b >> x >> N;
  if (x % 2 == 0) {
    cout << 0 << ' ' << N / 2 << '\n';
  } else {
    cout << N / 2 << ' ' << 0 << '\n';
  }
  return 0;
}
0