結果

問題 No.746 7の倍数
ユーザー Yut176Yut176
提出日時 2019-05-26 23:23:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 81,532 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 15:23:56
合計ジャッジ時間 1,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<vector>
#include<string>
#include<sstream>
#include<cmath>
#include<numeric>
#include<map>
#include<stack>
#include<queue>
using namespace std;
long long mod = 1e9 + 7;

int main(void) {
  int n; cin >> n;
  if(n == 0) cout << 0 << endl;
  else printf("%.10lf\n", 1.0/7);

  return 0;
}



// EOF
0