結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-11-27 17:17:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 329 bytes |
| コンパイル時間 | 886 ms |
| コンパイル使用メモリ | 66,892 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 08:17:14 |
| 合計ジャッジ時間 | 1,231 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}