結果
問題 | No.46 はじめのn歩 |
ユーザー | タキノボリ |
提出日時 | 2019-02-11 15:57:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 385 bytes |
コンパイル時間 | 335 ms |
コンパイル使用メモリ | 55,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 11:47:24 |
合計ジャッジ時間 | 6,759 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | OLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <iostream> int main() { int A, B,num; std::cin >> A; std::cin >> B; for (int i = A; i <= B; i++) { if (i % 3 == 0) { std::cout << i << std::endl; continue; } num = i; for (int j = 1; j < 10; j++) { num = num / 10; if (num == 0) { break; } if (num % 10 == 3) { std::cout << num << std::endl; break; } } } return 0; }