結果
問題 | No.207 世界のなんとか |
ユーザー | shallow |
提出日時 | 2017-08-25 00:27:01 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 381 bytes |
コンパイル時間 | 220 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 6,784 KB |
最終ジャッジ日時 | 2024-10-15 14:25:32 |
合計ジャッジ時間 | 6,752 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <stdio.h> int main() { long long i, j, A, B; scanf("%lld %lld", &A, &B); for(i = A; i <= B; i++) { if(i%3 == 0 || i%10 == 3) { printf("%lld\n", i); } else { for(j = 10; i/j == 0; i/j) { if(i == 3) { printf("%lld\n", i); } } } } return 0; }