結果
問題 | No.188 HAPPY DAY |
ユーザー | lifefucker_1911 |
提出日時 | 2017-10-02 23:14:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 687 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 67,276 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-10 00:40:59 |
合計ジャッジ時間 | 864 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ソースコード
#include <algorithm> #include <iostream> #include <math.h> #include <stdio.h> #include <string> #include <sstream> #include <stack> #include <queue> #include <vector> #include <time.h> using namespace std; int main() { int a[12],b[4],c[10]; int count = 0; for(int i = 0; i < 12; i++){ a[i] = i + 1; } for(int i = 0; i < 4; i++){ b[i] = i; } for(int i = 0; i < 10; i++){ c[i] = i; } for(int i = 0; i < 12; i++){ for(int j = 0; j < 4; j++){ for(int k = 0; k < 10; k++){ if( b[j] == 3 && c[k] != 0 ){ break; } if( a[i] == b[j] + c[k]){ //cout << a[i] << b[j] << c[k] <<endl; count++; } } } } cout << count <<endl; return 0; }