結果

問題 No.51 やる気の問題
ユーザー sayusayu
提出日時 2014-11-30 21:23:35
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 72,820 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 07:27:10
合計ジャッジ時間 1,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <vector>
using namespace std;
typedef pair<int, int> pii;
#define rep(i,x) for(int i=0;i<(int)(x);i++)

int main(){
	int w, d;
	cin >> w >> d;
	for (long i = d; i > 1; --i) w -= w/(i*i);
	cout << w << endl;
	return 0;
}
0