結果
| 問題 | No.188 HAPPY DAY | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-10-18 09:35:36 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 402 bytes | 
| コンパイル時間 | 1,049 ms | 
| コンパイル使用メモリ | 81,276 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-10-18 09:35:38 | 
| 合計ジャッジ時間 | 1,586 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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);
                plus += j - plus*10;
                if(i == plus)ans++;
                
            }
        }
    }
    cout << ans << endl;
    
}
            
            
            
        