結果
問題 |
No.746 7の倍数
|
ユーザー |
|
提出日時 | 2018-11-09 11:43:43 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 163 bytes |
コンパイル時間 | 1,304 ms |
コンパイル使用メモリ | 157,944 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 05:11:15 |
合計ジャッジ時間 | 4,236 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | WA * 1 RE * 19 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; string s = "0.142857"; for(int i=0;i<n+2;i++){ cout<<s[i]; } cout<<endl; }