結果
問題 | No.188 HAPPY DAY |
ユーザー | rainy |
提出日時 | 2021-06-07 10:03:43 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-05-03 11:48:11 |
合計ジャッジ時間 | 413 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ソースコード
#include<stdio.h> int main(void){ int count = 0; for(int i = 0; i < 3;i++){ for(int l=1; l < 10;l++){ switch(i+l){ case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: case 9: case 10: case 11: case 12: count +=1; break; } } } printf("%d", count + 2); }