結果

問題 No.1101 鼻水
ユーザー takumat
提出日時 2020-07-03 21:40:45
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 826 bytes
コンパイル時間 913 ms
コンパイル使用メモリ 96,100 KB
最終ジャッジ日時 2025-01-11 14:21:01
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <limits.h>
#include <math.h>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <map>
#include <set>
#include <stack>
#include <queue>

typedef unsigned long long ULLONG;
typedef long long LLONG;
static const LLONG MOD_NUM = 1000000007;//998244353;

template<class _T> static void getval(_T& a) {
	std::cin >> a;
}
template<class _T> static void getval(_T& a, _T& b) {
	std::cin >> a >> b;
}
template<class _T> static void getval(_T& a, _T& b, _T& c) {
	std::cin >> a >> b >> c;
}

static void exec();

int main()
{
	exec();
	fflush(stdout);
	return 0;
}

static void exec()
{
	LLONG V, T, P;
	getval(V, T, P);
	
	if (P) {
		V = V * (P + 1);
	}
	LLONG rd = V / T;
	rd += (rd + V % T) / T;

	LLONG ans = V + rd + 1;

	printf("%lld\n", ans);
}
0