結果
問題 | No.481 1から10 |
ユーザー | m |
提出日時 | 2020-07-12 07:18:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 264 bytes |
コンパイル時間 | 543 ms |
コンパイル使用メモリ | 63,104 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 01:32:04 |
合計ジャッジ時間 | 1,184 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include <iostream> using namespace std; int main() { int b[9]; for (int i = 0; i < 9; i++) { cin >> b[i]; if (b[i] - b[i-1] != 1) { cout << b[i] - 1 << endl; continue; } } if (b[8] == 9){ cout << 10 << endl; } return 0; }