結果

問題 No.744 循環小数N桁目 Easy
ユーザー ABKZABKZ
提出日時 2021-07-27 17:59:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 56 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 220,472 KB
最終ジャッジ日時 2024-07-23 15:13:59
合計ジャッジ時間 4,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,080 KB
testcase_01 AC 37 ms
53,624 KB
testcase_02 RE -
testcase_03 AC 38 ms
52,328 KB
testcase_04 RE -
testcase_05 AC 37 ms
51,876 KB
testcase_06 RE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print(str((2 * pow(10, N)) // 7)[-1])
0