結果

問題 No.8098 tan 2
ユーザー gyozasukisuki
提出日時 2023-03-31 22:38:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 775 bytes
コンパイル時間 1,466 ms
コンパイル使用メモリ 165,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 01:27:27
合計ジャッジ時間 2,008 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,l,r) for(int i=(l); i<(r); i++)
#define INF ((1LL<<62)-(1LL<<31)) 
using namespace std;
using ll = long long;
using inv = vector<int>;
using stv = vector<string>;
using GraphI = vector<inv>;
using position = pair<int,int>;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    // double T,S,D; cin >> T >> S >> D;
    // double endtime = T+D/S;
    // double fet = floor(endtime);

    // double ans = 0;
    // for(int i=(int)T; i<(int)fet; i++){
    //     int d = i % 25;
    //     if(d >= 18 || d <= 6) ans += 1;
    // }

    // if((int)fet%25 >= 18 || (int)fet%25 < 6){
    //     ans += ((T+D/S)-fet);
    // }

    // cout <<setprecision(10) << ans << endl;
    int I;cin >> I;
    cout << "No" << endl;



}
0