結果
問題 | No.188 HAPPY DAY |
ユーザー | rainy |
提出日時 | 2021-06-07 10:02:02 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-24 11:17:31 |
合計ジャッジ時間 | 474 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ソースコード
#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); }