結果
| 問題 |
No.207 世界のなんとか
|
| コンテスト | |
| ユーザー |
latte0119
|
| 提出日時 | 2015-05-16 20:51:23 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 168 bytes |
| コンパイル時間 | 1,424 ms |
| コンパイル使用メモリ | 158,564 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-06 04:57:57 |
| 合計ジャッジ時間 | 1,755 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 15 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int A,B;
cin>>A>>B;
for(int i=A;i<=B;i++){
if(i%3==0)cout<<i<<endl;
}
return 0;
}
latte0119