結果
| 問題 | No.188 HAPPY DAY |
| コンテスト | |
| ユーザー |
mine691
|
| 提出日時 | 2019-03-27 20:32:03 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 337µs | |
| コード長 | 387 bytes |
| 記録 | |
| コンパイル時間 | 890 ms |
| コンパイル使用メモリ | 179,612 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-13 19:26:21 |
| 合計ジャッジ時間 | 1,690 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll mod = 1e9 + 7;
const ll inf = (1 << 30) - 1;
const ll infll = (1LL << 61) - 1;
int a, b;
int main()
{
for (int i = 1; i <= 12; i++)
{
for (int j = 1; j <= 30; j++)
{
a = j / 10 + j % 10;
if (i == a)
b++;
}
}
cout << b << endl;
}
mine691