結果
| 問題 | No.313 π |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2023-09-06 00:02:03 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 5,000 ms |
| コード長 | 198 bytes |
| 記録 | |
| コンパイル時間 | 388 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 77,684 KB |
| 最終ジャッジ日時 | 2026-03-09 00:39:32 |
| 合計ジャッジ時間 | 3,809 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 32 |
ソースコード
from collections import *
S = Counter(input())
L = [20104,20063,19892,20011,19874,20199,19898,20163,19956,19841]
ans = [-1, -1, -1]
for i in range(10):
ans[S[str(i)] - L[i]] = i
print(*ans[1:])
rlangevin