結果
問題 |
No.207 世界のなんとか
|
ユーザー |
![]() |
提出日時 | 2016-04-07 23:21:31 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 1,269 ms |
コンパイル使用メモリ | 159,500 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 10:50:37 |
合計ジャッジ時間 | 1,975 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <bits/stdc++.h> using namespace std; bool ok(int s) { if (s%3 == 0) { return true; } while (s) { if (s%10 == 3) { return true; } s /= 10; } return false; } int main() { int A, B; cin >> A >> B; for (int i = A; i <= B; ++i) { if (ok(i)) { cout << i << endl; } } }