結果
| 問題 | No.796 well known |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-07-09 06:31:51 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 721 bytes |
| 記録 | |
| コンパイル時間 | 4,400 ms |
| コンパイル使用メモリ | 182,952 KB |
| 実行使用メモリ | 9,168 KB |
| 最終ジャッジ日時 | 2026-07-09 06:32:03 |
| 合計ジャッジ時間 | 3,639 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 2 WA * 13 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
void solve(){
int num, sum = 0, ul;
cin >> num;
if(num == 2){
cout << 1 << " " << 3 << endl;
} else if(num == 3){
cout << 1 << " " << 3 << " " << 6 << endl;
} else if(num == 4){
cout << 1 << " " << 3 << " " << 6 << " " << 9 << endl;
} else{
int i = 1;
if(num % 3 == 0){
ul = num + 1;
} else if(num % 3 == 1){
ul = num + 6;
} else{
ul = num + 4;
}
for(int i = 1; i < num; i++){
cout << i << " ";
}
cout << ul << endl;
}
}
int main(){
solve();
return 0;
}
vjudge1