結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
GeekTAKUYA
|
| 提出日時 | 2018-11-05 14:27:51 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 516 bytes |
| コンパイル時間 | 597 ms |
| コンパイル使用メモリ | 66,660 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-20 20:10:51 |
| 合計ジャッジ時間 | 1,065 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 9 WA * 10 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main()
{
long long A, B;
int 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;
}
}
}
}
}
GeekTAKUYA