結果
問題 | No.188 HAPPY DAY |
ユーザー | rainy |
提出日時 | 2021-06-07 10:02:02 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-05-03 11:46:55 |
合計ジャッジ時間 | 460 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ソースコード
#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 + 1); }