結果

問題 No.207 世界のなんとか
コンテスト
ユーザー hatake5051
提出日時 2018-07-13 02:29:58
言語 C++11
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 5,000 ms
+ 433µs
コード長 427 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 274 ms
コンパイル使用メモリ 70,016 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2026-09-10 11:24:47
合計ジャッジ時間 1,627 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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;
    }    
}
0