結果
問題 |
No.2609 Decreasing GCDs
|
ユーザー |
![]() |
提出日時 | 2024-01-19 21:33:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 209 bytes |
コンパイル時間 | 387 ms |
コンパイル使用メモリ | 30,464 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-28 04:03:59 |
合計ジャッジ時間 | 3,569 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | WA * 22 |
ソースコード
#include <cstdio> using namespace std; int main() { int n; scanf("%d", &n); printf("14 "); for (int i = 2; i <= n; i++) { printf("%d ", i * 7); } printf("\n"); return 0; }