結果
問題 | No.313 π |
ユーザー | chuka231 |
提出日時 | 2015-12-11 22:38:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 516 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 61,132 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-15 08:27:19 |
合計ジャッジ時間 | 1,507 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include <string> #include <iostream> #include <cmath> #include <fstream> using namespace std; int a[10] = { 1954, 1997, 1986, 1987, 2043, 2082, 2017, 1953, 1962, 2020 }; int b[10]; int main() { char cc; for (int i = 0; i < 20002; i++) { cc = getchar(); if(cc != '.') b[cc - '0']++; } int g = 0; int l = 0; for (int i = 0; i < 10; i++) { //cout << a[i] << " - " << b[i] << endl; if (a[i] < b[i]) { l = i; } if (a[i] > b[i]) { g = i; } } cout << l << " " << g << endl; return 0; }