結果
| 問題 | No.207 世界のなんとか |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-06-26 09:21:19 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 220 bytes |
| 記録 | |
| コンパイル時間 | 1,403 ms |
| コンパイル使用メモリ | 172,932 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-20 06:01:35 |
| 合計ジャッジ時間 | 1,800 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 8 WA * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(int argc, char **argv) {
int A,B;
scanf("%d%d",&A,&B);
for(;A<=B;A++)
{
if(A%3 == 0 || A%10 == 3 || A/10 ==3)
{
printf("%d\n",A);
}
}
return 0;
}