結果

問題 No.188 HAPPY DAY
ユーザー notsix4notsix4
提出日時 2021-11-21 13:59:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 10,804 KB
実行使用メモリ 7,788 KB
最終ジャッジ日時 2023-09-04 23:00:51
合計ジャッジ時間 641 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=[0,1,2,3,4,5,6,7,8,9,1]
b=[2,3,4,5,6,7,8,9,10,2]
c=[3,4,5,6,7,8,9,10,11,3,4]
l=a+b+c
#print(l[1:32].count(1))

s=l[1:32].count(1)+l[1:29].count(2)+l[1:32].count(3)+l[1:31].count(4)+l[1:32].count(5)+l[1:31].count(6)+l[1:32].count(7)+l[1:32].count(8)+l[1:31].count(9)+l[1:32].count(10)+l[1:31].count(11)+l[1:32].count(12)
print(s)
0