結果

問題 No.207 世界のなんとか
ユーザー u_gf22
提出日時 2017-06-14 17:15:32
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 21:02:45
合計ジャッジ時間 933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main()
{
	int A, B;
	int i;
	scanf("%d", &A);
	scanf("%d", &B);

	for (i = A; i <= B; i++) {
		if (i % 3 == 0)
			printf("%d\n", i);
	}
	
	return 0;
}
0