結果
問題 | No.46 はじめのn歩 |
ユーザー | Kozuma |
提出日時 | 2017-12-14 23:46:26 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 106 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-14 13:38:57 |
合計ジャッジ時間 | 878 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 27 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,624 KB |
testcase_08 | AC | 28 ms
10,624 KB |
testcase_09 | AC | 25 ms
10,624 KB |
ソースコード
num = input().split() ans = int(int(num[1]) / int(num[0])) if ans != 0: print(int(ans)) else: print("1")