結果

問題 No.514 宝探し3
ユーザー jjjj
提出日時 2017-05-05 22:57:33
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 967 ms
コンパイル使用メモリ 25,412 KB
実行使用メモリ 24,420 KB
平均クエリ数 5.00
最終ジャッジ日時 2023-09-23 13:28:19
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,760 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
23,604 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