結果

問題 No.207 世界のなんとか
ユーザー re1ns
提出日時 2015-11-14 20:04:38
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 55,260 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 10:38:56
合計ジャッジ時間 1,112 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cstdio>
#include <cstdlib>
using namespace std;
int main(){
	char str[11];
	string s;
	long long int a,b,tmp;
	cin >> a >> b;
	for(int i=0;i<=b-a;i++){
		tmp = a+i;
		if(tmp%3==0){
			cout << tmp << endl;
		}
		else{
			sprintf(str,"%lld",tmp);
			s=str;
			if(s.find("3")!=-1)cout << s << endl;
		}
	}
}
0