結果
問題 |
No.313 π
|
ユーザー |
![]() |
提出日時 | 2019-03-26 15:59:34 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-10-11 01:26:58 |
合計ジャッジ時間 | 3,447 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 32 |
ソースコード
S = input() cnt = {'3': 20011, '.': 1, '1': 20063, '4': 19874, '5': 20199, '9': 19841, '2': 19892, '6': 19898, '8': 19956, '7': 20163, '0': 20104} for c in S: cnt[c] -= 1 cnt = sorted(cnt.items(), key=lambda x: x[1]) print(cnt) print(cnt[0][0], cnt[-1][0])