結果

問題 No.9000 Hello World! (テスト用)
ユーザー _Clay____
提出日時 2018-09-22 14:03:00
言語 Assembler
(nasm 3.01)
コンパイル:
nasmc Main
実行:
./a.out
結果
WA  
実行時間 -
コード長 221 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 378 ms
コンパイル使用メモリ 7,968 KB
実行使用メモリ 15,816 KB
最終ジャッジ日時 2026-04-02 00:37:28
合計ジャッジ時間 763 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

section .data
	string db "Hello World", 0x0A
	string_length equ $ - string

section .text
global _start

_start:
	mov eax, 4
	mov ebx, 1
	mov ecx, string
	mov edx, string_length
	int 0x80
	mov eax, 1
	mov ebx, 0
	int 0x80
0