結果
問題 |
No.207 世界のなんとか
|
ユーザー |
![]() |
提出日時 | 2018-11-05 14:28:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 531 ms |
コンパイル使用メモリ | 66,532 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-20 20:10:53 |
合計ジャッジ時間 | 1,256 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 9 WA * 10 |
ソースコード
#include<iostream> #include<string> using namespace std; int main() { long A, B; long i, j; string str; cin >> A >> B; for (i = A; i <= B; ++i) { if (i%3 == 0) { cout << i << endl; } else { str = to_string(i); for (j = 0; j <= str.length(); ++j) { if(str[j] == '3') { cout << i << endl; } } } } }