結果

問題 No.207 世界のなんとか
ユーザー severrabaenseverrabaen
提出日時 2019-01-05 13:19:06
言語 C++11
(gcc 11.4.0)
結果
OLE  
実行時間 -
コード長 595 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 82,940 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-11-23 23:19:55
合計ジャッジ時間 56,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 OLE -
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 AC 1 ms
8,320 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <map>
#include <set>
#include <stdio.h>
#include <cstring>
#include <queue>
#include <stack>
#include <functional>
#include <math.h>
#include <iomanip>
using namespace std;
#define Would
#define you
const int INF = 999999999;
const int MOD = 1e9 + 7;

int main() {
	long long a, b, mon;
	cin >> a >> b;
	for (int i = 1; i <= b; ++i) {
		if (i % 3 == 0) { cout << i << endl; }
		else {
			mon = i;
			while (mon) {
				if (mon % 10 == 3) {
					cout << i << endl;
					break;
				}
				mon /= 10;
			}
		}
	}
}
0