結果

問題 No.353 ヘイトプラス
コンテスト
ユーザー むらため
提出日時 2018-12-18 09:39:44
言語 Nim
(2.2.8)
コンパイル:
nim --nimcache=~ --hints:off -o:a.out -d:release cpp _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 1,000 ms
+ 196µs
コード長 187 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,810 ms
コンパイル使用メモリ 67,276 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-08-05 13:33:38
合計ジャッジ時間 2,736 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

proc printf(formatstr: cstring){.header: "<stdio.h>", varargs.}
proc scanf(formatstr: cstring){.header: "<stdio.h>", varargs.}
var a,b:int
scanf("%d %d",addr a,addr b)
printf("%d",a-(-b))
0