結果

問題 No.514 宝探し3
ユーザー jjjj
提出日時 2017-05-05 22:57:33
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 1,132 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 25,220 KB
平均クエリ数 5.00
最終ジャッジ日時 2024-07-16 13:04:36
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,964 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 21 ms
25,220 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::AX=0,AY=0
  integer*8::lm,um
  print '("0 -1")'
  read *, lm
  print '("100000 -1")'
  read *, um
  AX = (lm-um)/2+50000
  print '("-1 0")'
  read *, lm
  print '("-1 100000")'
  read *, um
  AY = (lm-um)/2+50000
  print '(i0," ",i0)',AX,AY
end program main
0