結果

問題 No.207 世界のなんとか
ユーザー rahi_rahi_Rahiorahi_rahi_Rahio
提出日時 2017-09-15 23:55:56
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 11:33:52
合計ジャッジ時間 821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(){
int a,b,I;
scanf("%d %d",&a,&b);

for(I=a;I<=b;I++){
if(I%3==0||I%10==3||I%100==3||I%1000==3||I%10000==3||I%100000==3||I%1000000==3||I%10000000==3||I%100000000==3||I%1000000000==3||I%10000000000==3){
printf("%d\n",I);
}
}
return 0;
}
0