結果
問題 |
No.207 世界のなんとか
|
ユーザー |
![]() |
提出日時 | 2021-12-02 08:32:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 329 bytes |
コンパイル時間 | 573 ms |
コンパイル使用メモリ | 65,980 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 01:47:55 |
合計ジャッジ時間 | 1,310 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <iostream> #include <string> int main () { int A, B; std::string number; std::cin >> A >> B; for (int i = A; i <= B; i++) { number = std::to_string(i); if (i % 3 == 0 || number.find("3") != std::string::npos) { std::cout << i << std::endl; } } return 0; }