結果

問題 No.207 世界のなんとか
ユーザー よっかよっか
提出日時 2015-05-15 22:28:38
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 799 bytes
コンパイル時間 1,050 ms
コンパイル使用メモリ 90,012 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 10:08:48
合計ジャッジ時間 1,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <deque>
#include <stack>
#include <memory>
#include <functional>
#include <algorithm>
#include <map>
#include <list>
#include <complex>
#include <string>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <numeric>
#include <array>
using namespace std;
typedef std::pair<int, int> pii;
typedef long long int ll;

#define pb push_back

int main(){
	
	int A, B;
	std::vector<int> v;

	cin >> A >> B;

	for (int i = A; i <= B; ++i) {
		v.pb(i);
	}

	for (int i = 0; i < v.size(); ++i) {
		if(v[i]%3 == 0){
			std::cout << v[i] << std::endl;
			continue;
		}

		string s = to_string(v[i]);
		for (int j = 0; j < s.length(); ++j) {
			if(s[j] == '3'){
				std::cout << v[i] << std::endl;
				break;
			}
		}
	}



	return 0;
}
0