結果

問題 No.311 z in FizzBuzzString
ユーザー 簡易ログイン簡易ログイン
提出日時 2015-12-05 08:10:21
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 74 ms / 1,500 ms
コード長 44 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 76,072 KB
最終ジャッジ日時 2023-10-25 02:36:34
合計ジャッジ時間 1,659 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n=int(raw_input())
ans=n/3*2+n/5*2
print ans
0