結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,568 KB
testcase_01 AC 40 ms
51,808 KB
testcase_02 AC 38 ms
51,676 KB
testcase_03 AC 78 ms
71,648 KB
testcase_04 AC 39 ms
52,424 KB
testcase_05 AC 40 ms
53,288 KB
testcase_06 AC 49 ms
65,636 KB
testcase_07 AC 44 ms
59,512 KB
testcase_08 AC 50 ms
66,536 KB
testcase_09 AC 48 ms
60,480 KB
testcase_10 AC 40 ms
54,436 KB
testcase_11 AC 62 ms
71,276 KB
testcase_12 AC 78 ms
71,504 KB
testcase_13 AC 59 ms
70,968 KB
testcase_14 AC 62 ms
70,860 KB
testcase_15 AC 60 ms
71,312 KB
testcase_16 AC 61 ms
70,908 KB
testcase_17 AC 59 ms
71,176 KB
testcase_18 AC 60 ms
71,000 KB
testcase_19 AC 60 ms
71,188 KB
testcase_20 AC 43 ms
60,192 KB
testcase_21 AC 41 ms
55,596 KB
testcase_22 AC 71 ms
71,428 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