結果
| 問題 | No.746 7の倍数 |
| コンテスト | |
| ユーザー |
oevl
|
| 提出日時 | 2018-10-19 22:14:40 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 248 bytes |
| 記録 | |
| コンパイル時間 | 377 ms |
| コンパイル使用メモリ | 55,916 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-18 21:01:47 |
| 合計ジャッジ時間 | 1,087 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 20 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main() {
int N; cin >> N;
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