結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
oevl
|
| 提出日時 | 2018-10-19 22:15:42 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 301 bytes |
| コンパイル時間 | 385 ms |
| コンパイル使用メモリ | 55,484 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-18 21:05:15 |
| 合計ジャッジ時間 | 1,072 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main() {
int N; cin >> N;
if (N == 0) {
cout << '0' << endl;
return 0;
}
string s = "142857";
cout << "0.";
for (int i = 0; i < N / 6; i++)
cout << s;
for (int i = 0; i < N % 6; i++)
cout << s[i];
cout << endl;
return 0;
}
oevl