結果
| 問題 |
No.188 HAPPY DAY
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-04-18 18:24:09 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 416 bytes |
| コンパイル時間 | 537 ms |
| コンパイル使用メモリ | 64,768 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-06-27 04:31:11 |
| 合計ジャッジ時間 | 910 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int n = 0;
for(int m = 1; m <= 12; m++){
for(int fd = 0; fd <= 3; fd++){
for(int ld = 0; ld <= 9; ld++){
if(fd == 0 && ld == 0){
continue;
}else if(fd + ld == m){
n++;
}
}
}
}
cout << n << endl;
return 0;
}