結果
| 問題 | No.346 チワワ数え上げ問題 |
| コンテスト | |
| ユーザー |
gion_U
|
| 提出日時 | 2016-09-07 00:24:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 213 bytes |
| 記録 | |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 27,264 KB |
| 最終ジャッジ日時 | 2024-11-15 21:01:02 |
| 合計ジャッジ時間 | 63,522 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 3 TLE * 20 |
ソースコード
import collections
import itertools
def main():
print(
collections.Counter(
map(''.join, itertools.combinations(input(), 3))
)['cww']
)
if __name__ == '__main__':
main()
gion_U