結果

問題 No.207 世界のなんとか
ユーザー closeknclosekn
提出日時 2019-06-21 21:48:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
OLE  
実行時間 -
コード長 309 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 165,700 KB
実行使用メモリ 170,692 KB
最終ジャッジ日時 2024-12-25 23:52:02
合計ジャッジ時間 99,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 OLE -
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 AC 2 ms
8,448 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 3 ms
170,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int a, b;
  cin >> a >> b;
  for ( int i = a; i <= b; i++ ){
    if ( i % 3 == 0 ) { cout << i << endl; continue; }
    int t = i;
    while ( t > 0 ) {
      if ( t%10 == 3 ) { cout << i << endl; continue; }
      t /= 10;
    }
  }
  return 0;
}
0