結果
| 問題 | No.188 HAPPY DAY |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-18 09:33:10 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 396 bytes |
| 記録 | |
| コンパイル時間 | 1,449 ms |
| コンパイル使用メモリ | 148,372 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-05-05 14:15:34 |
| 合計ジャッジ時間 | 2,327 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
#include <iostream>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
int main(void){
int ans = 0;
rep(i,13) {
rep(j,32) {
if(i == 4 && j == 31);
else {
int plus = (j / 10) * 10;
plus += j - plus;
if(i == plus)ans++;
}
}
}
cout << ans;
}