結果
問題 | No.128 お年玉(1) |
ユーザー | ノットカワズ |
提出日時 | 2016-05-10 06:05:52 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 61 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 10:17:13 |
合計ジャッジ時間 | 1,037 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
6,400 KB |
testcase_01 | WA | - |
testcase_02 | AC | 9 ms
6,400 KB |
testcase_03 | WA | - |
testcase_04 | AC | 9 ms
6,400 KB |
testcase_05 | AC | 9 ms
6,400 KB |
testcase_06 | AC | 9 ms
6,272 KB |
testcase_07 | AC | 9 ms
6,272 KB |
testcase_08 | AC | 10 ms
6,400 KB |
testcase_09 | AC | 9 ms
6,528 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
# -*- coding:utf-8 -*- N = input() M = input() def otoshidama(N, M): dama = N / M if dama < 1000: dama = 0 return dama print int(otoshidama(N, M))