結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
alorie10
|
| 提出日時 | 2018-10-19 23:10:25 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 266 bytes |
| コンパイル時間 | 2,020 ms |
| コンパイル使用メモリ | 54,912 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-18 22:23:21 |
| 合計ジャッジ時間 | 1,394 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include <iostream>
using namespace std;
int main(void){
// Your code here!
int n;
cin>>n;
if(n==0){cout<<0<<endl;return 0;}
cout<<"0.";
string s="142857";
for(int i=0;i<n/6;i++){
cout<<s;
}
cout<<s.substr(0,n%6)<<endl;
}
alorie10