結果

問題 No.128 お年玉(1)
ユーザー MaboyMaboy
提出日時 2021-06-15 22:25:24
言語 Swift
(5.8.1)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 86 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 120,180 KB
実行使用メモリ 7,768 KB
最終ジャッジ日時 2023-08-27 19:04:55
合計ジャッジ時間 4,407 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,692 KB
testcase_01 AC 3 ms
7,672 KB
testcase_02 AC 3 ms
7,596 KB
testcase_03 AC 3 ms
7,752 KB
testcase_04 AC 3 ms
7,696 KB
testcase_05 AC 3 ms
7,640 KB
testcase_06 AC 3 ms
7,648 KB
testcase_07 AC 3 ms
7,680 KB
testcase_08 AC 3 ms
7,676 KB
testcase_09 AC 3 ms
7,540 KB
testcase_10 AC 3 ms
7,540 KB
testcase_11 AC 3 ms
7,616 KB
testcase_12 AC 3 ms
7,760 KB
testcase_13 AC 3 ms
7,644 KB
testcase_14 AC 3 ms
7,544 KB
testcase_15 AC 3 ms
7,604 KB
testcase_16 AC 3 ms
7,600 KB
testcase_17 AC 3 ms
7,736 KB
testcase_18 AC 3 ms
7,768 KB
testcase_19 AC 3 ms
7,684 KB
testcase_20 AC 3 ms
7,488 KB
testcase_21 AC 3 ms
7,576 KB
testcase_22 AC 3 ms
7,488 KB
testcase_23 AC 3 ms
7,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let N = Int(readLine()!)
let M = Int(readLine()!)
print(Int(N! / (M! * 1000) * 1000))
0