結果

問題 No.746 7の倍数
ユーザー souhei gunjisouhei gunji
提出日時 2018-12-09 17:09:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 233 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,972 KB
最終ジャッジ日時 2024-09-16 09:02:55
合計ジャッジ時間 19,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,904 KB
testcase_01 AC 41 ms
11,788 KB
testcase_02 AC 42 ms
12,168 KB
testcase_03 TLE -
testcase_04 AC 130 ms
12,172 KB
testcase_05 AC 345 ms
12,176 KB
testcase_06 AC 651 ms
16,436 KB
testcase_07 AC 500 ms
16,356 KB
testcase_08 AC 702 ms
16,540 KB
testcase_09 AC 499 ms
16,360 KB
testcase_10 AC 321 ms
12,184 KB
testcase_11 AC 1,262 ms
16,596 KB
testcase_12 TLE -
testcase_13 AC 930 ms
16,952 KB
testcase_14 AC 1,173 ms
16,688 KB
testcase_15 AC 1,029 ms
16,972 KB
testcase_16 AC 1,117 ms
16,680 KB
testcase_17 AC 1,020 ms
16,516 KB
testcase_18 AC 1,158 ms
16,640 KB
testcase_19 AC 992 ms
16,568 KB
testcase_20 AC 493 ms
16,416 KB
testcase_21 AC 524 ms
12,188 KB
testcase_22 AC 1,476 ms
16,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import decimal
decimal.getcontext().prec = 1000000

def no746(a):

    b = decimal.Decimal(math.floor(a / 7))
    print(decimal.Decimal(b/a))

if __name__ == "__main__":
    a = decimal.Decimal(input())
    no746(10**a)
0