結果
問題 | No.188 HAPPY DAY |
ユーザー | chacoder1 |
提出日時 | 2020-12-21 22:38:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 1,968 ms |
コンパイル使用メモリ | 199,144 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-21 13:11:07 |
合計ジャッジ時間 | 2,341 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int cnt=0; for(int i=1;i<=12;i++){ for(int j=1;j<31;j++){ int k=j; int temp=0; while(k){ temp+=k%10; k/=10; } if(temp==i) cnt++; } } cout<<cnt<<endl; return 0; }