結果

問題 No.746 7の倍数
ユーザー souhei gunjisouhei gunji
提出日時 2018-12-09 18:48:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,758 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-09-16 09:04:25
合計ジャッジ時間 13,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 30 ms
11,136 KB
testcase_03 AC 1,758 ms
12,028 KB
testcase_04 AC 42 ms
11,264 KB
testcase_05 AC 79 ms
11,136 KB
testcase_06 AC 344 ms
12,032 KB
testcase_07 AC 201 ms
11,776 KB
testcase_08 AC 402 ms
11,904 KB
testcase_09 AC 201 ms
11,904 KB
testcase_10 AC 75 ms
11,136 KB
testcase_11 AC 925 ms
12,032 KB
testcase_12 AC 1,737 ms
11,996 KB
testcase_13 AC 605 ms
12,032 KB
testcase_14 AC 837 ms
12,144 KB
testcase_15 AC 706 ms
12,056 KB
testcase_16 AC 799 ms
12,032 KB
testcase_17 AC 686 ms
12,160 KB
testcase_18 AC 822 ms
12,004 KB
testcase_19 AC 664 ms
12,032 KB
testcase_20 AC 192 ms
11,776 KB
testcase_21 AC 132 ms
11,264 KB
testcase_22 AC 1,108 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def no746(a):

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

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