結果

問題 No.1004 サイコロの実装 (2)
ユーザー tonegawatonegawa
提出日時 2020-08-13 05:26:47
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 2,637 ms
コンパイル使用メモリ 191,384 KB
最終ジャッジ日時 2025-01-12 21:41:26
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define PI 3.14159265359
using namespace std;
const int64_t MOD = 1e9 + 7;

int main() {
	int64_t a, b, x, N;
	cin >> a >> b >> x >> N;

	if (x % 2) {
		cout << N / 2 << ' ' << 0 << endl;
	}
	else {
		cout << 0 << ' ' << N / 2 << endl;
	}
}
0