結果
問題 | No.188 HAPPY DAY |
ユーザー |
|
提出日時 | 2024-10-18 09:33:10 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 396 bytes |
コンパイル時間 | 948 ms |
コンパイル使用メモリ | 82,044 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-10-18 09:33:11 |
合計ジャッジ時間 | 1,602 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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) * 10; plus += j - plus; if(i == plus)ans++; } } } cout << ans; }