結果

問題 No.746 7の倍数
ユーザー yansi819yansi819
提出日時 2024-05-14 08:58:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 71,304 KB
最終ジャッジ日時 2024-12-20 09:51:25
合計ジャッジ時間 2,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,156 KB
testcase_01 AC 40 ms
52,124 KB
testcase_02 AC 39 ms
52,812 KB
testcase_03 AC 81 ms
71,144 KB
testcase_04 AC 39 ms
52,692 KB
testcase_05 AC 42 ms
53,000 KB
testcase_06 AC 52 ms
65,788 KB
testcase_07 AC 46 ms
60,340 KB
testcase_08 AC 52 ms
66,048 KB
testcase_09 AC 47 ms
59,408 KB
testcase_10 AC 42 ms
52,972 KB
testcase_11 AC 67 ms
70,804 KB
testcase_12 AC 84 ms
71,176 KB
testcase_13 AC 61 ms
71,004 KB
testcase_14 AC 64 ms
70,728 KB
testcase_15 AC 62 ms
70,716 KB
testcase_16 AC 62 ms
70,872 KB
testcase_17 AC 64 ms
70,596 KB
testcase_18 AC 65 ms
71,304 KB
testcase_19 AC 61 ms
70,832 KB
testcase_20 AC 46 ms
60,268 KB
testcase_21 AC 42 ms
54,532 KB
testcase_22 AC 73 ms
71,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(10 ** 6)
N = int(input())
A = 10 ** N // 7
if A == 0:
    print(0)
else:
    print("0." + str(A))
0