結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-04 09:33:36 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 194 bytes |
| コンパイル時間 | 459 ms |
| コンパイル使用メモリ | 67,476 KB |
| 最終ジャッジ日時 | 2025-01-15 02:23:02 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 14 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int x,y;
cin >> x >> y;
for(int i = x; i<y; i++)
if(i%3==0||i%10==3||i/10==3)
cout << i << endl;
return 0;
}