結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
tntan
|
| 提出日時 | 2015-12-04 23:11:16 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 823 bytes |
| コンパイル時間 | 774 ms |
| コンパイル使用メモリ | 90,904 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-09 10:39:14 |
| 合計ジャッジ時間 | 1,385 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
#include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <string>
#include <bitset>
#include <cstdio>
#include <limits>
#include <vector>
#include <climits>
#include <cstring>
#include <cstdlib>
#include <fstream>
#include <numeric>
#include <sstream>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <cctype>
using namespace std;
typedef long long ll;
int main()
{
int a, b;
string s;
stringstream ss;
cin >> a >> b;
for (int i = a; i <= b; i++)
{
if (i % 3 == 0)cout << i << endl;
else
{
ss << i; ss >> s; ss.clear();
for (int j = 0; j < static_cast<int>(s.size()); j++)
{
if (s[j] == '3')
{
cout << s << endl;
s.clear();
break;
}
}
s.clear();
}
}
return 0;
}
tntan