結果
| 問題 |
No.128 お年玉(1)
|
| コンテスト | |
| ユーザー |
kawacchu
|
| 提出日時 | 2019-03-17 17:15:38 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 87 bytes |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-10-01 11:00:20 |
| 合計ジャッジ時間 | 1,472 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 6 WA * 15 |
ソースコード
N = int(input())
M = int(input())
if N//M >= 1000 :
print(N//M)
else :
print(0)
kawacchu