結果

問題 No.311 z in FizzBuzzString
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 23:21:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 1,500 ms
コード長 43 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 53,420 KB
最終ジャッジ日時 2023-10-25 03:02:47
合計ジャッジ時間 1,163 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

n = int(input())
c = n//3 + n//5
print(c*2)
0