結果
問題 | No.207 世界のなんとか |
ユーザー |
|
提出日時 | 2018-07-13 02:29:58 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 427 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 56,144 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 02:55:21 |
合計ジャッジ時間 | 973 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <iostream>using namespace std;const int MAX_SIZE = 1e9;unsigned int A,B;int hasthree(unsigned int num){if (num % 3 == 0) return 1;int cnum = 10;while ( 1 ){if (num % cnum == 3) return 1;if (num < 10) return 0;num /= cnum;}return 0;}int main(){cin >> A >> B;for (unsigned int i=A; i<=B;i++){if(hasthree(i)) cout << i << endl;}}