結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
chizuchizu
|
| 提出日時 | 2018-11-24 19:05:46 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 298 bytes |
| コンパイル時間 | 516 ms |
| コンパイル使用メモリ | 69,204 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-24 19:22:02 |
| 合計ジャッジ時間 | 1,275 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 17 |
ソースコード
#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
int main(void){
int a, b; cin >> a >> b;
for(int i = a; i < b; i++){
if ((i+1) % 3 == 0){
cout << i + 1 << endl;
}
}
}
chizuchizu