結果
問題 |
No.207 世界のなんとか
|
ユーザー |
|
提出日時 | 2021-03-09 01:14:10 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 332 bytes |
コンパイル時間 | 1,555 ms |
コンパイル使用メモリ | 165,952 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 15:20:59 |
合計ジャッジ時間 | 2,267 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 WA * 18 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int A,B; cin >> A >> B; int ans = 0; for(int i=A;i<B;i++){ if(i%3==0){ cout << ans << endl; } for(int j=i;j>0;j/=10){ if(j%10==3){ cout << i << endl; } } } return 0; }