結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2019-02-05 00:17:01 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 602 ms |
コンパイル使用メモリ | 57,216 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 06:32:52 |
合計ジャッジ時間 | 1,452 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 |
ソースコード
#include <iostream> #include <string> using namespace std; int main() { long long A,B; cin >> A >> B; for(int i=A; i<=B; i++) { int mod = i % 3; string str = to_string(i); if ((mod==0)||(str.find("3")!=string::npos)) cout << i << '\n'; } return 0; }