結果
問題 | No.313 π |
ユーザー |
![]() |
提出日時 | 2019-03-26 15:54:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-10-11 01:26:32 |
合計ジャッジ時間 | 2,368 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 32 |
ソースコード
S = input() cnt = {'1': 20069, '4': 19880, '5': 20203, '9': 19846, '2': 19902, '6': 19911, '3': 20016, '8': 19964, '7': 20166, '0': 20111} for c in S: cnt[c] -= 1 cnt = sorted(cnt.items(), key=lambda x: x[1]) print(cnt[-1], cnt[0])