結果
| 問題 | No.207 世界のなんとか |
| コンテスト | |
| ユーザー |
streingmust
|
| 提出日時 | 2017-04-09 21:46:09 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 336µs | |
| コード長 | 320 bytes |
| 記録 | |
| コンパイル時間 | 306 ms |
| コンパイル使用メモリ | 73,824 KB |
| 実行使用メモリ | 9,340 KB |
| 最終ジャッジ日時 | 2026-08-16 05:22:32 |
| 合計ジャッジ時間 | 1,750 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
#include <iostream>
#include <string>
int main(void){
int A, B;
std::string str;
std::cin >> A;
std::cin >> B;
for(int i=A; i<=B; i++){
if(i%3 == 0) std::cout << i << std::endl;
else{
str = std::to_string(i);
if(str.find('3')!=std::string::npos){
std::cout << i << std::endl;
}
}
}
return 0;
}
streingmust