結果
| 問題 |
No.1415 100の倍数かつ正整数(1)
|
| コンテスト | |
| ユーザー |
wesoweeen
|
| 提出日時 | 2021-05-28 11:54:01 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 202 bytes |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 24,448 KB |
| 最終ジャッジ日時 | 2024-11-07 02:08:40 |
| 合計ジャッジ時間 | 3,998 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 TLE * 1 -- * 18 |
ソースコード
def main():
N = int(input())
if N > 0:
nums = [i for i in range(N + 1) if i % 100 == 0]
print(len(nums) - 1)
else:
print(0)
if __name__ == '__main__':
main()
wesoweeen