結果
問題 | No.188 HAPPY DAY |
ユーザー | 00Asage00 |
提出日時 | 2017-01-22 19:32:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 366 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 62,968 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-06-09 21:44:50 |
合計ジャッジ時間 | 903 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ソースコード
#include "iostream" #include "cmath" #include "algorithm" #include "string" #include "vector" using namespace std; int s = 0; void output() { cout << s << endl; } int main() { int a, b; for (int i = 0; i < 13; i++) { for (int j = 0; j < 30; j++) { a = j / 10; b = j - (10 * a); if (i == a + b) { s += 1; } } } output(); return 0; }