結果

問題 No.1278 どんな級数?
ユーザー chocorusk
提出日時 2020-10-30 22:52:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 673 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 121,488 KB
最終ジャッジ日時 2025-01-15 17:49:33
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 1
other WA * 21 RE * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
using ll=long long;
typedef pair<int, int> P;

int main()
{
    int x, k; cin>>x>>k;
    if(x==1){
        printf("%.7lf\n", k-0.25);
    }else{
        assert(0);
    }
    return 0;
}
0