結果

問題 No.746 7の倍数
ユーザー penguinshunya
提出日時 2018-10-20 01:09:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 193,348 KB
最終ジャッジ日時 2025-01-06 14:43:10
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n; cin >> n;
  if (n == 0) {
    cout << 0 << endl;
    return 0;
  }
  cout << "0.";
  for (int i = 0; i < n; i++) {
    switch (i % 6) {
      case 0: cout << 1; break;
      case 1: cout << 4; break;
      case 2: cout << 2; break;
      case 3: cout << 8; break;
      case 4: cout << 5; break;
      case 5: cout << 7; break;
    }
  }
  cout << endl;
  return 0;
}
0