結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
J31831276
|
| 提出日時 | 2018-12-31 03:27:05 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 10 ms / 2,000 ms |
| コード長 | 329 bytes |
| コンパイル時間 | 966 ms |
| コンパイル使用メモリ | 57,556 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-10 03:50:42 |
| 合計ジャッジ時間 | 1,390 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:9: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
15 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
ソースコード
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#define ll long long
using namespace std;
int main(){
int d[6]={1,4,2,8,5,7};
int n;
scanf("%d",&n);
printf("0");
if(n){
printf(".");
for(int i=0;i<n;++i) printf("%d",d[i%6]);
}
printf("\n");
return 0;
}
J31831276