結果
問題 | No.791 うし数列 |
ユーザー | nyan68682154 |
提出日時 | 2019-05-19 17:07:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 460 ms |
コンパイル使用メモリ | 60,512 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 06:29:30 |
合計ジャッジ時間 | 1,146 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include<iostream> #include<string> #include<math.h> #include<stdlib.h> #include<string> #include<cstdio> #include<stack> using namespace std; int main() { int n; cin >> n; int sum = 0; int f = 0; for (int i = 1; i <= n ; i = i * 10) { sum = sum + (n / i) % 10; if ((n / i) % 10 != 3) { if (i * 10 > n) { if ((n / i) % 10 == 1) { cout << (sum - 1) / 3; break; } } cout << -1; break; } } }