結果
問題 | No.502 階乗を計算するだけ |
ユーザー | Lisp_Coder |
提出日時 | 2024-04-23 16:08:53 |
言語 | Assembler (nasm 2.16.01) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,766 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 16:36:07 |
合計ジャッジ時間 | 1,695 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
ソースコード
section .bss res resq 1 ; 結果を保持する変数(64ビット) section .data modulus dd 1000000007 ; モジュラス section .text global _start _start: ; 数値 n を標準入力から読み込む mov eax, 3 ; syscall for sys_read mov ebx, 0 ; stdin mov ecx, res ; バッファのアドレス mov edx, 12 ; バッファのサイズ int 0x80 ; システムコール実行 ; 文字列を整数に変換 mov rdi, res ; 数値の文字列のアドレス call atoi ; 階乗計算 mov rcx, rax ; カウンター rcx に n をセット mov rax, 1 ; rax に初期値 1 をセット(結果を保持) calc_fact: mul rcx ; rax *= rcx mov rdx, 0 ; rdx をクリア(mulでのオーバーフロー防止) dec rcx ; rcx をデクリメント jnz calc_fact ; rcx が 0 でないならループ ; モジュラス演算 mov rcx, modulus ; rcx に 1000000007 をロード div rcx ; rdx:rax / rcx, 商は rax に、余りは rdx に mov rax, rdx ; 結果は rdx にあるので、それを rax に移動 ; 結果を表示 mov eax, 4 ; syscall for sys_write mov ebx, 1 ; stdout mov ecx, res ; バッファのアドレス mov edx, 12 ; 文字数 int 0x80 ; システムコール実行 ; 終了 mov eax, 1 ; syscall for sys_exit xor ebx, ebx ; ステータス 0 int 0x80 atoi: ; 文字列を整数に変換する関数 ; 省略(実際のatoi関数の実装が必要) ret