結果

問題 No.188 HAPPY DAY
ユーザー notsix4notsix4
提出日時 2021-11-21 13:59:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-06-22 20:19:50
合計ジャッジ時間 587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 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